forked from s421507/eOSP2
13 lines
194 B
PHP
13 lines
194 B
PHP
|
<?php
|
||
|
|
||
|
namespace App;
|
||
|
|
||
|
use Illuminate\Database\Eloquent\Model;
|
||
|
|
||
|
class trainings extends Model
|
||
|
{
|
||
|
protected $primaryKey = 'id';
|
||
|
|
||
|
protected $fillable = ['fireStationID', 'trainingName'];
|
||
|
}
|