'float', 'is_allowed_edit_commission' => 'bool', 'is_inhouse' => 'bool' ]; protected $fillable = [ 'name', 'percentage', 'is_allowed_edit_commission', 'is_inhouse' ]; public function bookings() { return $this->hasMany(Booking::class); } public function booking_service_items() { return $this->hasMany(BookingServiceItem::class); } }