11 lines
311 B
PHP
11 lines
311 B
PHP
<?php
|
|
namespace App\Models;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class DriverDocument extends Model {
|
|
protected $connection = 'primary';
|
|
protected $table = 'driver_documents';
|
|
public $timestamps = false;
|
|
protected $fillable = ['driverID', 'doc_type', 'image_name', 'link', 'upload_date'];
|
|
}
|