mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-10 23:54:12 -08:00
31 lines
719 B
PHP
31 lines
719 B
PHP
<?php
|
|
use Illuminate\Database\Seeder;
|
|
use App\Models\Supplier;
|
|
|
|
class SupplierSeeder extends Seeder
|
|
{
|
|
public function run()
|
|
{
|
|
Supplier::truncate();
|
|
factory(Supplier::class, 5)->create();
|
|
|
|
$src = public_path('/img/demo/suppliers');
|
|
$dst = public_path('/uploads/suppliers');
|
|
|
|
$del_files = glob($dst."/*.*");
|
|
|
|
foreach($del_files as $del_file){ // iterate files
|
|
if(is_file($del_file))
|
|
unlink($del_file); // delete file
|
|
}
|
|
|
|
|
|
$add_files = glob($src."/*.*");
|
|
foreach($add_files as $add_file){
|
|
$file_to_copy = str_replace($src,$dst,$add_file);
|
|
copy($add_file, $file_to_copy);
|
|
}
|
|
|
|
}
|
|
}
|