+ availability

This commit is contained in:
2026-01-26 09:06:06 +00:00
parent 18aad4749f
commit a448fce756
34 changed files with 1089 additions and 578 deletions

View File

@@ -16,14 +16,15 @@ class Booking extends Model
'guest_name',
'guest_email',
'guest_phone',
'status',
'confirmed_at',
'is_confirmed',
'total_price',
];
protected $casts = [
'check_in' => 'date',
'check_out' => 'date',
'confirmed_at' => 'datetime',
'is_confirmed' => 'boolean',
'total_price' => 'decimal:2',
];
public function roomType()