31 lines
882 B
PHP
31 lines
882 B
PHP
<?php
|
|
|
|
use Illuminate\Database\Seeder;
|
|
|
|
class DatabaseSeeder extends Seeder
|
|
{
|
|
/**
|
|
* Run the database seeds.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function run()
|
|
{
|
|
$this->call(PaymentmethodSeeder::class);
|
|
$this->call(UserSeeder::class);
|
|
$this->call(OrderSeeder::class);
|
|
$this->call(CategorySeeder::class);
|
|
$this->call(ReservationSeeder::class);
|
|
$this->call(EventSeeder::class);
|
|
$this->call(SeatsSeeder::class);
|
|
$this->call(EventCategorySeeder::class);
|
|
$this->call(SingleSeatsSeeder::class);
|
|
$this->call(ConcessionSeeder::class);
|
|
$this->call(EventConcessionSeeder::class);
|
|
$this->call(UserReservationSeeder::class);
|
|
$this->call(SeattemplateSeeder::class);
|
|
$this->call(CultureCardSeeder::class);
|
|
$this->call(UsercategorySeeder::class);
|
|
}
|
|
}
|