15 lines
256 B
PHP
15 lines
256 B
PHP
<?php
|
|
|
|
namespace App;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class operationsTrucks extends Model
|
|
{
|
|
//
|
|
protected $primaryKey = 'id';
|
|
protected $table = 'operationsTrucks';
|
|
|
|
protected $fillable = ['operationID', 'truckID', 'driverID'];
|
|
}
|