21 lines
717 B
PHP
21 lines
717 B
PHP
<?php
|
|
namespace App\Models;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
/**
|
|
* نموذج تقييم الراكب (RatingPassenger Model)
|
|
*
|
|
* الغرض من الملف:
|
|
* تخزين التقييمات التي يتركها السائقون للركاب.
|
|
*
|
|
* كيفية العمل:
|
|
* 1. يرتبط بجدول (ratingPassenger) في قاعدة البيانات الأساسية.
|
|
* 2. يربط التقييم بالراكب والسائق والرحلة.
|
|
*/
|
|
class RatingPassenger extends Model {
|
|
protected $connection = 'primary';
|
|
protected $table = 'ratingPassenger';
|
|
public $timestamps = false;
|
|
protected $fillable = ['passenger_id', 'driverID', 'rideId', 'rating', 'comment', 'created_at'];
|
|
}
|