<?php

namespace App\Models\Sales;

use Illuminate\Database\Eloquent\Model;

class TicketSeat extends Model 
{
 
    protected $table='ticket_seat';
    protected $primaryKey = 'id';
    protected $fillable = ['ticket_id','seat_id','show_time_id','status'];
    
    function ticket()
    {
        return $this->belongsTo('\App\Models\Sales\Ticket','ticket_id','id');
    }

    function seat()
    {
        return $this->belongsTo('\App\Models\Facility\Seats','seat_id','id');
    }

}
