missing paid_at as date field
This commit is contained in:
@ -15,6 +15,8 @@ class Payment extends Model
|
|||||||
|
|
||||||
protected $table = 'payments';
|
protected $table = 'payments';
|
||||||
|
|
||||||
|
protected $dates = ['deleted_at', 'paid_at'];
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Attributes that should be mass-assignable.
|
* Attributes that should be mass-assignable.
|
||||||
*
|
*
|
||||||
|
@ -15,6 +15,8 @@ class Revenue extends Model
|
|||||||
|
|
||||||
protected $table = 'revenues';
|
protected $table = 'revenues';
|
||||||
|
|
||||||
|
protected $dates = ['deleted_at', 'paid_at'];
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Attributes that should be mass-assignable.
|
* Attributes that should be mass-assignable.
|
||||||
*
|
*
|
||||||
|
Reference in New Issue
Block a user