Files
intaleq_v2/app/Models/DriverDocument.php
2026-04-22 21:59:56 +03:00

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'];
}