<?php

namespace App;

use Illuminate\Database\Eloquent\Model;

class operationsTrucks extends Model
{
    //
    protected $primaryKey = 'id';
    protected $table = 'operationsTrucks';

    protected $fillable = ['operationID', 'truckID', 'driverID'];
}