'int', 'total' => 'float', 'storno' => 'float', 'done' => 'bool' ]; protected $dates = [ 'storno_date' ]; protected $fillable = [ 'booking_id', 'total', 'storno', 'storno_date', 'binary_data', 'done' ]; public function booking() { return $this->belongsTo(Booking::class); } }