misbar-backend/database/seeders/ContactSeeder.php
2024-09-11 12:42:53 +03:00

37 lines
1.5 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. It works to meet the needs of users and improve their experience through innovative and safe educational applications.',
'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 anumber of topics and terms related to our service portfolio that concern us. we look forward to descovering somethings interesting for you in our subject areas.There are anumber of topics and terms related to our service portfolio that concern us. we look forward to descovering somethings interesting for you in our subject areas.',
'direction' => 0,
'is_have_button' => 0,
]
]);
}
}