17 lines
355 B
PHP
17 lines
355 B
PHP
<?php
|
|
|
|
namespace App;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Carbon\Carbon;
|
|
use Illuminate\Database\Eloquent\SoftDeletes;
|
|
|
|
class operations extends Model
|
|
{
|
|
//
|
|
use SoftDeletes;
|
|
protected $primaryKey = 'id';
|
|
protected $fillable = ['fireStationID', 'operationDate', 'location', 'target', 'dangerType', 'description', 'commanderID'];
|
|
|
|
}
|