add timestamp columns to tables
This commit is contained in:
@ -16,9 +16,16 @@ class Bidders extends Model
|
||||
'bidder_zip',
|
||||
'bidder_phone',
|
||||
'bidder_email',
|
||||
'bidder_assigned_number'
|
||||
'bidder_assigned_number',
|
||||
'created_at',
|
||||
'updated_at'
|
||||
];
|
||||
|
||||
protected $dates = [
|
||||
'created_at',
|
||||
'updated_at'
|
||||
];
|
||||
|
||||
public function checkout()
|
||||
{
|
||||
return $this->hasMany('App\Models\Checkout', 'bidder_num', 'idbidders');
|
||||
|
Reference in New Issue
Block a user