Added maintenances seeder

This commit is contained in:
snipe
2026-02-25 14:12:13 +00:00
parent 7b7e6c7971
commit 80ee0835aa
14 changed files with 59 additions and 2 deletions

View File

@@ -5,6 +5,7 @@ namespace Database\Factories;
use App\Models\Asset;
use App\Models\Maintenance;
use App\Models\Supplier;
use App\Models\User;
use Illuminate\Database\Eloquent\Factories\Factory;
class MaintenanceFactory extends Factory
@@ -24,14 +25,17 @@ class MaintenanceFactory extends Factory
public function definition()
{
return [
'asset_id' => Asset::factory(),
'asset_id' => Asset::factory()->laptopZenbook(),
'supplier_id' => Supplier::factory(),
'asset_maintenance_type' => $this->faker->randomElement(['maintenance', 'repair', 'upgrade']),
'name' => $this->faker->sentence(),
'name' => $this->faker->name(),
'start_date' => $this->faker->date(),
'is_warranty' => $this->faker->boolean(),
'notes' => $this->faker->paragraph(),
'url' => $this->faker->url(),
'cost' => $this->faker->randomFloat(),
'created_by' => User::factory()->superuser(),
'image' => $this->faker->numberBetween(1,11).'.png',
];
}
}

View File

@@ -44,6 +44,7 @@ class DatabaseSeeder extends Seeder
$this->call(ComponentSeeder::class);
$this->call(ConsumableSeeder::class);
$this->call(ActionlogSeeder::class);
$this->call(MaintenanceSeeder::class);
Artisan::call('snipeit:sync-asset-locations', ['--output' => 'all']);

View File

@@ -0,0 +1,52 @@
<?php
namespace Database\Seeders;
use App\Models\Maintenance;
use Illuminate\Database\Seeder;
use Illuminate\Support\Facades\Log;
use Illuminate\Support\Facades\Storage;
class MaintenanceSeeder extends Seeder
{
public function run()
{
Maintenance::truncate();
Maintenance::factory()->create(['image' => '1.png']);
Maintenance::factory()->create(['image' => '2.png']);
Maintenance::factory()->create(['image' => '3.png']);
Maintenance::factory()->create(['image' => '4.png']);
Maintenance::factory()->create(['image' => '5.png']);
Maintenance::factory()->create(['image' => '6.png']);
Maintenance::factory()->create(['image' => '7.png']);
Maintenance::factory()->create(['image' => '8.png']);
Maintenance::factory()->create(['image' => '9.png']);
Maintenance::factory()->create(['image' => '10.png']);
Maintenance::factory()->create(['image' => '11.png']);
$src = public_path('/img/demo/maintenances/');
$dst = 'maintenances'.'/';
$del_files = Storage::files($dst);
foreach ($del_files as $del_file) { // iterate files
$file_to_delete = str_replace($src, '', $del_file);
Log::debug('Deleting: '.$file_to_delete);
try {
Storage::disk('public')->delete($dst.$del_file);
} catch (\Exception $e) {
Log::debug($e);
}
}
$add_files = glob($src.'/*.*');
foreach ($add_files as $add_file) {
$file_to_copy = str_replace($src, '', $add_file);
Log::debug('Copying: '.$file_to_copy);
try {
Storage::disk('public')->put($dst.$file_to_copy, file_get_contents($src.$file_to_copy));
} catch (\Exception $e) {
Log::debug($e);
}
}
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 203 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 384 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 377 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 242 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 336 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 229 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 363 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 295 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 387 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 289 KiB