Added maintenances seeder
@@ -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',
|
||||
];
|
||||
}
|
||||
}
|
||||
|
||||
@@ -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']);
|
||||
|
||||
52
database/seeders/MaintenanceSeeder.php
Normal 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);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
BIN
public/img/demo/maintenances/1.png
Normal file
|
After Width: | Height: | Size: 203 KiB |
BIN
public/img/demo/maintenances/10.png
Normal file
|
After Width: | Height: | Size: 384 KiB |
BIN
public/img/demo/maintenances/11.png
Normal file
|
After Width: | Height: | Size: 377 KiB |
BIN
public/img/demo/maintenances/2.png
Normal file
|
After Width: | Height: | Size: 242 KiB |
BIN
public/img/demo/maintenances/3.png
Normal file
|
After Width: | Height: | Size: 336 KiB |
BIN
public/img/demo/maintenances/4.png
Normal file
|
After Width: | Height: | Size: 229 KiB |
BIN
public/img/demo/maintenances/5.png
Normal file
|
After Width: | Height: | Size: 1.6 MiB |
BIN
public/img/demo/maintenances/6.png
Normal file
|
After Width: | Height: | Size: 363 KiB |
BIN
public/img/demo/maintenances/7.png
Normal file
|
After Width: | Height: | Size: 295 KiB |
BIN
public/img/demo/maintenances/8.png
Normal file
|
After Width: | Height: | Size: 387 KiB |
BIN
public/img/demo/maintenances/9.png
Normal file
|
After Width: | Height: | Size: 289 KiB |