<?php

namespace App\Models;

use Illuminate\Database\Eloquent\Model;

class Payment extends Model
{
    protected $fillable = ['booking_id', 'customer_id', 'amount', 'method', 'status', 'reference', 'notes'];
    protected $casts = ['amount' => 'decimal:2'];

    public function booking()
    {
        return $this->belongsTo(Booking::class);
    }
}
