17 lines
368 B
PHP
17 lines
368 B
PHP
<?php
|
|
|
|
use Illuminate\Database\Seeder;
|
|
|
|
class UserReservationSeeder extends Seeder
|
|
{
|
|
/**
|
|
* Run the database seeds.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function run()
|
|
{
|
|
DB::table('single_seat_user')->insert(['user_id' => '1', 'single_seat_id' => '3', 'paymentmethod_id' => '1', 'order_id' => '1', 'event_concessions_id' => '1']);
|
|
}
|
|
}
|