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

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