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

11 lines
319 B
PHP

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class RatingDriver extends Model {
protected $connection = 'primary';
protected $table = 'ratingDriver';
public $timestamps = false;
protected $fillable = ['passenger_id', 'driver_id', 'ride_id', 'rating', 'comment', 'created_at'];
}