37 lines
1.2 KiB
PHP
37 lines
1.2 KiB
PHP
<?php
|
|
|
|
namespace Database\Seeders;
|
|
|
|
use App\Models\Contact;
|
|
use Illuminate\Database\Seeder;
|
|
|
|
class ContactSeeder extends Seeder
|
|
{
|
|
/**
|
|
* Run the database seeds.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function run()
|
|
{
|
|
Contact::insert([
|
|
[
|
|
'image' => '/images/contact/contact_473c7e88-37ea-4f32-8549-141e5b0306e6.png',
|
|
'title' => 'CONTACT',
|
|
'sub_title' => 'CONTACT US TODAY!',
|
|
'description' => 'Misbar is a pioneer in software development. It provides high-quality consulting and software solutions to educational institutions...',
|
|
'direction' => 1,
|
|
'is_have_button' => 1,
|
|
],
|
|
[
|
|
'image' => '/images/contact/contact_6aeee044-2adf-4075-ae22-bc054cf42b53.png',
|
|
'title' => 'Misbar',
|
|
'sub_title' => 'WHAT CONCERNS US',
|
|
'description' => 'There are a number of topics and terms related to our service portfolio that concern us. We look forward to discovering interesting things for you in our subject areas...',
|
|
'direction' => 0,
|
|
'is_have_button' => 0,
|
|
]
|
|
]);
|
|
}
|
|
}
|