misbar-backend/database/seeders/ServiceSeeder.php
2024-09-11 12:30:47 +03:00

43 lines
1.7 KiB
PHP

<?php
namespace Database\Seeders;
use App\Models\Services;
use Illuminate\Database\Seeder;
use Carbon\Carbon;
class ServiceSeeder extends Seeder
{
/**
* Run the database seeds.
*
* @return void
*/
public function run()
{
Services::insert([
[
'image' => '/images/services/services_d31feddb-403d-4177-8874-7f1f925c3024.png',
'title' => 'Mobile App Development',
'description' => 'Design and develop mobile apps, with testing and deployment of apps on app stores such as Google Play and App Store.',
'created_at' => Carbon::now(),
'updated_at' => Carbon::now(),
],
[
'image' => '/images/services/services_349d417c-3db1-4905-a370-5feccaefac17.png',
'title' => 'Custom Software Development',
'description' => 'Scelerisque eget scelerisque lectus orci tempor orci turpis mauris. Cursus venenatis mattis aliquam sed tempus in suspendisse faucibus. Bibendum at sed senectus lectus nunc a. Est eget feugiat eget massa eget tellus tellus. Quis pharetra sed cursus ornare metus quis urna etiam convallis. Et dignissim ultrices at adipiscing at integer gravida.',
'created_at' => Carbon::now(),
'updated_at' => Carbon::now(),
],
[
'image' => '/images/services/services_0c6a128d-2af4-4d8f-9300-395309b36f0c.png',
'title' => 'Improve business results',
'description' => 'Improve work efficiency through the use of appropriate software.',
'created_at' => Carbon::now(),
'updated_at' => Carbon::now(),
]
]);
}
}