Files
intaleq_v2/app/Models/ImageProfileCaptain.php
2026-04-22 23:16:23 +03:00

21 lines
758 B
PHP

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
/**
* نموذج الصورة الشخصية للسائق (ImageProfileCaptain Model)
*
* الغرض من الملف:
* إدارة الصور الشخصية (Profile Pictures) الخاصة بالسائقين.
*
* كيفية العمل:
* 1. يرتبط بجدول (imageProfileCaptain) في قاعدة البيانات الأساسية.
* 2. يخزن اسم ملف الصورة ورابط الوصول إليها وتاريخ الرفع.
*/
class ImageProfileCaptain extends Model {
protected $connection = 'primary';
protected $table = 'imageProfileCaptain';
public $timestamps = false;
protected $fillable = ['driverID', 'image_name', 'upload_date', 'link'];
}