Viewing: SolutionSeeder.php
<?php namespace Database\Seeders; use App\Models\Solution; use Illuminate\Database\Seeder; class SolutionSeeder extends Seeder { /** * Run the database seeds. * * @return void */ public function run() { Solution::insert([ [ 'title' => 'Designing', 'category_id' => 'Solution', 'image_url' => '--', 'thumbnail' => '--', 'short_desc' => 'Lorem Ipsum is simply dummy text of the printing and typesetting industry.', 'description' => 'Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industrys standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.', 'slug' => 'designing', 'status' => '1', ], [ 'title' => 'Testing', 'category_id' => 'Solution', 'image_url' => '--', 'thumbnail' => '--', 'short_desc' => 'Lorem Ipsum is simply dummy text of the printing and typesetting industry.', 'description' => 'Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industrys standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.', 'slug' => 'testing', 'status' => '1', ], [ 'title' => 'Development', 'category_id' => 'Technology', 'image_url' => '--', 'thumbnail' => '--', 'short_desc' => 'Lorem Ipsum is simply dummy text of the printing and typesetting industry.', 'description' => 'Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industrys standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.', 'slug' => 'development', 'status' => '1', ], [ 'title' => 'Maintenance', 'category_id' => 'Technology', 'image_url' => '--', 'thumbnail' => '--', 'short_desc' => 'Lorem Ipsum is simply dummy text of the printing and typesetting industry.', 'description' => 'Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industrys standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.', 'slug' => 'maintenance', 'status' => '1', ], ]); } }
Return