mirror of
https://github.com/InvoiceShelf/InvoiceShelf.git
synced 2026-04-07 13:41:23 +00:00
Setup pint & run code style fix
This commit is contained in:
@@ -12,15 +12,17 @@ class Transaction extends Model
|
||||
use HasFactory;
|
||||
|
||||
protected $guarded = [
|
||||
'id'
|
||||
'id',
|
||||
];
|
||||
|
||||
protected $dates = [
|
||||
'transaction_date'
|
||||
'transaction_date',
|
||||
];
|
||||
|
||||
public const PENDING = 'PENDING';
|
||||
|
||||
public const FAILED = 'FAILED';
|
||||
|
||||
public const SUCCESS = 'SUCCESS';
|
||||
|
||||
public function payments()
|
||||
|
||||
Reference in New Issue
Block a user