Featured tours working

This commit is contained in:
2025-09-15 13:40:20 +10:00
parent f0e7ce30fc
commit e965cc2780
24 changed files with 384 additions and 26 deletions

View File

@@ -14,9 +14,12 @@ class DatabaseSeeder extends Seeder
public function run(): void
{
// User::factory(10)->create();
$this->call(ContinentSeeder::class);
$this->call(CountrySeeder::class);
$this
->call(ContinentSeeder::class)
->call(CountrySeeder::class)
->call(TourSeeder::class)
->call(TourCountrySeeder::class)
;
User::factory()->create([
'name' => 'Test User',