2019-11-23 15:01:59 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App;
|
|
|
|
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
2020-01-13 04:34:20 +01:00
|
|
|
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';
|
2019-12-07 14:44:28 +01:00
|
|
|
protected $fillable = ['fireStationID', 'operationDate', 'location', 'target', 'dangerType', 'description', 'commanderID'];
|
2020-01-13 04:34:20 +01:00
|
|
|
|
2019-11-23 15:01:59 +01:00
|
|
|
}
|