Initial V2 commit
This commit is contained in:
10
app/Models/DriverDocument.php
Normal file
10
app/Models/DriverDocument.php
Normal file
@@ -0,0 +1,10 @@
|
||||
<?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'];
|
||||
}
|
||||
Reference in New Issue
Block a user