You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
308 B
PHTML
19 lines
308 B
PHTML
1 year ago
|
<?php
|
||
|
|
||
|
namespace App\Models;
|
||
|
|
||
|
class Sale extends Model
|
||
|
{
|
||
|
protected $fillable = [
|
||
|
'customer_id',
|
||
|
'date_time',
|
||
|
'amount',
|
||
|
'payed_with',
|
||
|
'payment_token',
|
||
|
'payment_status',
|
||
|
'payment_response',
|
||
|
'payment_channel',
|
||
|
'payment_type',
|
||
|
];
|
||
|
}
|