forked from s421507/eOSP2
14 lines
264 B
PHP
14 lines
264 B
PHP
<?php
|
|
|
|
namespace App;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class operations extends Model
|
|
{
|
|
//
|
|
protected $primaryKey = 'id';
|
|
|
|
protected $fillable = ['operationDate', 'location', 'target', 'dangerType', 'description', 'commanderID', 'driverID'];
|
|
}
|