43 lines
1.2 KiB
PHP
43 lines
1.2 KiB
PHP
<?php
|
|
|
|
namespace Database\Seeders;
|
|
|
|
use App\Models\SocialMedia;
|
|
use Illuminate\Database\Seeder;
|
|
use Carbon\Carbon;
|
|
|
|
class SocialMediaSeeder extends Seeder
|
|
{
|
|
/**
|
|
* Run the database seeds.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function run()
|
|
{
|
|
SocialMedia::insert([
|
|
[
|
|
'image' => '/images/social_media/social_media_2763e35b-64a3-4272-b20d-d9228a85d2c7.png',
|
|
'link' => 'https://facebook.com',
|
|
'is_active' => 1,
|
|
'created_at' => Carbon::now(),
|
|
'updated_at' => Carbon::now(),
|
|
],
|
|
[
|
|
'image' => '/images/social_media/social_media_d36abbbd-a10c-4f18-b4ec-9eae6ebf6e10.png',
|
|
'link' => 'https://instagram.com',
|
|
'is_active' => 1,
|
|
'created_at' => Carbon::now(),
|
|
'updated_at' => Carbon::now(),
|
|
],
|
|
[
|
|
'image' => '/images/social_media/social_media_8d782699-11ee-443b-a999-5b6d57875910.png',
|
|
'link' => 'https://twitter.com',
|
|
'is_active' => 1,
|
|
'created_at' => Carbon::now(),
|
|
'updated_at' => Carbon::now(),
|
|
]
|
|
]);
|
|
}
|
|
}
|