eOSP2/app/operations.php

17 lines
355 B
PHP
Raw Permalink Normal View History

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