15 lines
446 B
PHP
15 lines
446 B
PHP
<?php
|
|
namespace App\Models;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class CarLocation extends Model
|
|
{
|
|
protected $connection = 'tracking';
|
|
protected $table = 'car_locations';
|
|
protected $primaryKey = 'driver_id';
|
|
protected $keyType = 'string';
|
|
public $incrementing = false;
|
|
public $timestamps = false;
|
|
protected $fillable = ['driver_id', 'latitude', 'longitude', 'heading', 'speed', 'distance', 'status', 'carType'];
|
|
}
|