'int', 'travel_company_id' => 'int', 'service_price' => 'float', 'service_price_refund' => 'float', 'commission' => 'float', 'is_commission_locked' => 'bool' ]; protected $dates = [ 'travel_date' ]; protected $fillable = [ 'booking_id', 'travel_company_id', 'service_price', 'service_price_refund', 'commission', 'travel_date', 'name', 'is_commission_locked' ]; public function booking() { return $this->belongsTo(Booking::class); } public function travel_company() { return $this->belongsTo(TravelCompany::class); } }