create(); // setting,about_us,contact_us,home // home_description // home_main_image // about_us_description // contact_us_title // links // about_us_title // about_us_description // php artisan db:seed User::create([ 'email' => 'admin@admin.com', "password"=>Hash::make("12345678"), "name"=>"Super Admin" ]); $this->call([ KeysSeeder::class, ]); } }