forked from s421507/eOSP2
1
0
Fork 0
eOSP2/app/trainings.php

13 lines
194 B
PHP
Raw Normal View History

2019-12-25 22:35:20 +01:00
<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class trainings extends Model
{
protected $primaryKey = 'id';
protected $fillable = ['fireStationID', 'trainingName'];
}