BookingSeatSchedules.php - dathalongbay/notes GitHub Wiki
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class BookingSeatSchedules extends Model
{
protected $table = 'booking_seat_schedules';
protected $primaryKey = 'id';
protected $fillable = ['restaurant_code', 'source', 'start_time', 'end_time', 'seat_amount'];
}