11 lines
319 B
PHP
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'];
|
|
}
|