Initial V2 commit 4
This commit is contained in:
@@ -2,6 +2,16 @@
|
||||
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';
|
||||
|
||||
Reference in New Issue
Block a user