migrate to gtea from bistbucket

This commit is contained in:
2026-03-15 17:08:23 +07:00
commit 129ca2260c
3716 changed files with 566316 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
<?php
namespace Database\Seeders;
use App\Models\Banner;
use Illuminate\Database\Seeder;
class AdvertiseSeeder extends Seeder
{
public function run(): void
{
$banners = array(
array('imageUrl' => 'uploads/24/06/1718101787-963.png', 'status' => '1', 'created_at' => '2024-06-11 22:29:48', 'updated_at' => '2024-06-11 22:29:48'),
array('imageUrl' => 'uploads/24/06/1718101799-395.png', 'status' => '1', 'created_at' => '2024-06-11 22:29:59', 'updated_at' => '2024-06-11 22:29:59'),
array('imageUrl' => 'uploads/24/06/1718101807-972.png', 'status' => '1', 'created_at' => '2024-06-11 22:30:07', 'updated_at' => '2024-06-11 22:30:07')
);
Banner::insert($banners);
}
}