<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class CancelledAppointment extends Model
{
protected $fillable = [
'RefundTransactionId',
'BankTransactionId',
'RefundInitiateDate',
'RefundAmount',
'RefundStatus',
'Notes',
'AppointmentID',
'PaymentType',
'OrderID'
];
}