eOSP2/app/operations.php

14 lines
269 B
PHP
Raw Normal View History

2019-11-23 15:01:59 +01:00
<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class operations extends Model
{
//
protected $primaryKey = 'id';
protected $fillable = ['fireStationID', 'operationDate', 'location', 'target', 'dangerType', 'description', 'commanderID'];
2019-11-23 15:01:59 +01:00
}