Edit File: CategoryTableSeeder.php
<?php namespace Database\Seeders; use DB; use Carbon\Carbon; use App\Models\Category; use Illuminate\Database\Seeder; class CategoryTableSeeder extends Seeder { /** * Run the database seeds. * * @return void */ public function run() { DB::table('categories')->insert([ [ 'name' => json_encode(['en' => 'Super market', 'ar' => 'سوبر ماركت'], JSON_UNESCAPED_UNICODE), ], [ 'name' => json_encode(['en' => 'Pharmacies', 'ar' => 'صيدليات'], JSON_UNESCAPED_UNICODE), ], [ 'name' => json_encode(['en' => 'Fruits and vegetables', 'ar' => 'فواكه وخضار'], JSON_UNESCAPED_UNICODE), ], [ 'name' => json_encode(['en' => 'Detergents', 'ar' => 'منطفات'], JSON_UNESCAPED_UNICODE), ] ]); DB::table('categories')->insert([ [ 'parent_id' => 1, 'name' => json_encode(['en' => 'Dairy department', 'ar' => 'قسم الألبان'], JSON_UNESCAPED_UNICODE), ], [ 'parent_id' => 1, 'name' => json_encode(['en' => 'Frozen section', 'ar' => 'قسم المجمدات'], JSON_UNESCAPED_UNICODE), ], [ 'parent_id' => 1, 'name' => json_encode(['en' => 'Beverage section', 'ar' => 'قسم المشروبات'], JSON_UNESCAPED_UNICODE), ], [ 'parent_id' => 2, 'name' => json_encode(['en' => 'Pharmaceutical Department', 'ar' => 'أدوية'], JSON_UNESCAPED_UNICODE), ], [ 'parent_id' => 2, 'name' => json_encode(['en' => 'Beauty Department', 'ar' => 'قسم التجميل'], JSON_UNESCAPED_UNICODE), ], [ 'parent_id' => 2, 'name' => json_encode(['en' => 'Pharmaceutical Compositions', 'ar' => 'ٌقسم التركيبات'], JSON_UNESCAPED_UNICODE), ], [ 'parent_id' => 3, 'name' => json_encode(['en' => 'Fresh Fruits', 'ar' => 'قسم الفواكه الطازجة'], JSON_UNESCAPED_UNICODE), ], [ 'parent_id' => 3, 'name' => json_encode(['en' => 'Fresh Vegetables', 'ar' => 'قسم الخطروات الطبيعية'], JSON_UNESCAPED_UNICODE), ], [ 'parent_id' => 4, 'name' => json_encode(['en' => 'Home Products', 'ar' => 'مستحضرات منزلية'], JSON_UNESCAPED_UNICODE), ], [ 'parent_id' => 4, 'name' => json_encode(['en' => 'Pesticides', 'ar' => 'مبيدات حشرية'], JSON_UNESCAPED_UNICODE), ], // classification [ 'parent_id' => 5, 'name' => json_encode(['en' => 'Cheese section', 'ar' => 'الأجبان'], JSON_UNESCAPED_UNICODE), ], [ 'parent_id' => 8, 'name' => json_encode(['en' => 'Yogurt', 'ar' => 'الزبادي'], JSON_UNESCAPED_UNICODE), ], [ 'parent_id' => 6, 'name' => json_encode(['en' => 'Sausage', 'ar' => 'السجق'], JSON_UNESCAPED_UNICODE), ], [ 'parent_id' => 6, 'name' => json_encode(['en' => 'Meats', 'ar' => 'اللحوم'], JSON_UNESCAPED_UNICODE), ], [ 'parent_id' => 7, 'name' => json_encode(['en' => 'Fruits', 'ar' => 'أطباق الفواكه'], JSON_UNESCAPED_UNICODE), ], [ 'parent_id' => 7, 'name' => json_encode(['en' => 'Vegetables', 'ar' => 'أطباق خضار'], JSON_UNESCAPED_UNICODE), ], [ 'parent_id' => 8, 'name' => json_encode(['en' => 'Reptile spray', 'ar' => 'رش زواحف'], JSON_UNESCAPED_UNICODE), ], [ 'parent_id' => 8, 'name' => json_encode(['en' => 'Powders', 'ar' => 'بودره'], JSON_UNESCAPED_UNICODE), ], ]); } }
Back to File Manager