2019-11-23 15:01:59 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App;
|
|
|
|
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
|
|
|
|
class operationsTrucks extends Model
|
|
|
|
{
|
|
|
|
//
|
|
|
|
protected $primaryKey = 'id';
|
2019-12-07 14:44:28 +01:00
|
|
|
protected $table = 'operationsTrucks';
|
2019-11-23 15:01:59 +01:00
|
|
|
|
2019-12-07 14:44:28 +01:00
|
|
|
protected $fillable = ['operationID', 'truckID', 'driverID'];
|
2019-11-23 15:01:59 +01:00
|
|
|
}
|