/** * Run the database seeds. * * @return void */ public function run() { Partner::firstOrCreate(['name' => "McDonalds", 'featured_image' => '/images/sample_images/hotels/1.jpg', 'type' => 'Food', 'price' => 5.99, 'description' => 'A lovely restaurant for family meals.', 'location_id' => 2, 'distance' => 20.5, 'email' => '*****@*****.**', 'logo' => '/images/sample_images/logos/mcdonalds.png', 'url' => 'http://mcdonalds.com']); Partner::firstOrCreate(['name' => "Bewleys", 'featured_image' => '/images/sample_images/hotels/2.jpg', 'type' => 'Hotel', 'price' => 64.98999999999999, 'description' => 'A fancy-schmancy hotel', 'location_id' => 2, 'distance' => 5.65, 'email' => '*****@*****.**', 'logo' => '/images/sample_images/logos/bewleys.png', 'url' => 'http://bewleys.com']); Partner::firstOrCreate(['name' => "Ramen", 'featured_image' => '/images/sample_images/hotels/3.jpg', 'type' => 'Food', 'price' => 6.0, 'description' => 'Asian street food', 'location_id' => 4, 'distance' => 89, 'email' => '*****@*****.**', 'logo' => '/images/sample_images/logos/ramen.jpg', 'url' => 'http://ramen.com']); Partner::firstOrCreate(['name' => "Rament", 'featured_image' => '/images/sample_images/hotels/3.jpg', 'type' => 'Food', 'price' => 6.0, 'description' => 'Asian street food better than Ramen', 'location_id' => 4, 'distance' => 89, 'email' => '*****@*****.**', 'logo' => '/images/sample_images/logos/rament.jpg', 'url' => 'http://rament.com']); }