11 lines
302 B
PHP
11 lines
302 B
PHP
<?php
|
|
namespace App\Models;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class DriverGift extends Model {
|
|
protected $connection = 'primary';
|
|
protected $table = 'driver_gifts';
|
|
public $timestamps = false;
|
|
protected $fillable = ['driver_id', 'gift_description', 'gift_date', 'is_claimed'];
|
|
}
|