Edit File: SocialTableSeeder.php
<?php namespace Database\Seeders; use App\Models\Social; use Illuminate\Database\Seeder; use DB; class SocialTableSeeder extends Seeder { /** * Run the database seeds. * * @return void */ public function run() { DB::table('socials')->insert([ [ 'icon' => 'facebook.png', 'name' => 'facebook', 'link' => 'https://www.facebook.com', ],[ 'name' => 'instgram', 'icon' => 'Instagram.png', 'link' => 'https://www.instgram.com', ],[ 'name' => 'twitter', 'icon' => 'twitter.png', 'link' => 'https://www.twitter.com', ] ]); } }
Back to File Manager