<?php

namespace App\Models;

use Illuminate\Database\Eloquent\Model;

class OwnerPayment extends Model
{
    //
    protected $fillable = [
        'owner_id',
        'amount',
        'owner_name',
        'owner_phone',
        'note',
        'created_at',
        'updated_at'
    ];

    protected $dates = [
        'created_at',
        'updated_at'
    ];
}
