forked from s421507/eOSP2
16 lines
590 B
PHP
16 lines
590 B
PHP
|
<?php
|
||
|
|
||
|
namespace App;
|
||
|
|
||
|
use Illuminate\Database\Eloquent\Model;
|
||
|
|
||
|
class vehicle extends Model
|
||
|
{
|
||
|
protected $primaryKey = 'id';
|
||
|
protected $table = 'vehicles';
|
||
|
|
||
|
protected $fillable = [
|
||
|
'fireStationID','name', 'codename', 'brand', 'registrationNumber', 'productionYear', 'examExpirationDate', 'insuranceExpirationDate', 'driveType', 'chassisType', 'bodyProducer', 'crewNumber', 'foamAgent', 'enginePower', 'mass', 'chassisNumber', 'engineNumber', 'fuelType', 'chassisPoductionYear', 'entryIntoServiceDate', 'fireEnginePumpDescription', 'created_at', 'updated_at'
|
||
|
];
|
||
|
|
||
|
}
|