forked from a1gard/xshop
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
792 B
PHP
33 lines
792 B
PHP
<?php
|
|
|
|
use Illuminate\Database\Seeder;
|
|
|
|
class SliderSeeder extends Seeder
|
|
{
|
|
/**
|
|
* Run the database seeds.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function run()
|
|
{
|
|
//
|
|
|
|
$faker = Faker\Factory::create('fa_IR');
|
|
if (!file_exists(storage_path('app/public/sliders'))){
|
|
File::makeDirectory(storage_path('app/public/sliders'));
|
|
}
|
|
for ($i = 1; $i <3; $i++) {
|
|
$c = new Xmen\StarterKit\Models\Slider();
|
|
$t = time().$i.$i;
|
|
$c->image = $t.'.jpg';
|
|
$c->user_id = rand(1,3);
|
|
$c->body = $faker->realText(600);
|
|
$j = rand(1,5);
|
|
File::copy(__DIR__ . "/img/top.jpg",storage_path('app/public/sliders/'.$t.'.jpg'));
|
|
$c->save();
|
|
}
|
|
|
|
}
|
|
}
|