2018-12-10 07:27:23 +00:00
|
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
|
|
use Illuminate\Database\Seeder;
|
|
|
|
|
|
|
|
|
|
|
|
class CategoriesSeeder extends Seeder
|
|
|
|
|
|
{
|
|
|
|
|
|
/**
|
|
|
|
|
|
* Run the database seeds.
|
|
|
|
|
|
*
|
|
|
|
|
|
* @return void
|
|
|
|
|
|
*/
|
|
|
|
|
|
public function run()
|
|
|
|
|
|
{
|
|
|
|
|
|
Schema::disableForeignKeyConstraints();
|
|
|
|
|
|
DB::table('categories')->delete();
|
|
|
|
|
|
Schema::enableForeignKeyConstraints();
|
|
|
|
|
|
|
|
|
|
|
|
$categories = [
|
2019-10-02 14:08:07 +00:00
|
|
|
|
['id'=>1,'title_ru'=>'КИНОТЕАТР','title_tk'=>'KINOTEATR'],
|
|
|
|
|
|
['id'=>2,'title_ru'=>'ТЕАТР','title_tk'=>'TEATR'],
|
|
|
|
|
|
['id'=>3,'title_ru'=>'КОНЦЕРТ','title_tk'=>'AÝDYM SAZ'],
|
|
|
|
|
|
['id'=>4,'title_ru'=>'РАЗВЛЕЧЕНИЯ','title_tk'=>'ŞAGALAŇ'],
|
|
|
|
|
|
['id'=>5,'title_ru'=>'ДЛЯ ДЕТЕЙ','title_tk'=>'ÇAGALAR ÜÇIN'],
|
|
|
|
|
|
['id'=>6,'title_ru'=>'СПОРТ','title_tk'=>'SPORT'],
|
|
|
|
|
|
['id'=>7,'title_ru'=>'ДРУГИЕ','title_tk'=>'BEÝLEKILER'],
|
2018-12-10 07:27:23 +00:00
|
|
|
|
];
|
|
|
|
|
|
DB::table('categories')->insert($categories);
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|