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

37 lines
1.4 KiB
PHP

<?php
namespace Database\Seeders;
use App\Models\RecentWorks;
use Carbon\Carbon;
use Illuminate\Database\Console\Seeds\WithoutModelEvents;
use Illuminate\Database\Seeder;
class RecentWorksSedder extends Seeder
{
/**
* Run the database seeds.
*
* @return void
*/
public function run()
{
RecentWorks::insert([
[
'image' => '/images/recent_works/recent_works_be0f7b74-414d-45ab-a0e6-5e87465d4374.png',
'title' => 'Sham Al-maarefa App',
'description' => 'Get in touch with us if you want to optimize your controlling and accounting processes with system support! We would be happy to present our solution portfolio to you and support you as a partner in the design and implementation.',
'created_at' => Carbon::now(),
'updated_at' => Carbon::now(),
],
[
'image' => '/images/recent_works/recent_works_28df93e9-3078-46a6-aa42-b0e3c8ee4052.png',
'title' => 'E-Learning App',
'description' => 'Get in touch with us if you want to optimize your controlling and accounting processes with system support! We would be happy to present our solution portfolio to you and support you as a partner in the design and implementation.',
'created_at' => Carbon::now(),
'updated_at' => Carbon::now(),
]
]);
}
}