2022-08-11 09:46:51 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Models;
|
|
|
|
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
|
|
|
|
class PaymentTransaction extends Model
|
|
|
|
{
|
|
|
|
protected $table = 'payment_transactions';
|
|
|
|
protected $guarded = ['id'];
|
2023-08-30 14:14:37 +00:00
|
|
|
|
|
|
|
protected $dates = [
|
|
|
|
'payment_date'
|
|
|
|
];
|
2022-08-11 09:46:51 +00:00
|
|
|
}
|