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

16 lines
455 B
PHP
Raw Normal View History

<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class fireStation extends Model
{
protected $primaryKey = 'id';
2019-09-24 18:05:37 +02:00
protected $table = 'fireStations';
protected $fillable = [
2019-10-06 08:48:24 +02:00
'name', 'number', 'voivodeship', 'county', 'community', 'postOffice', 'zipCode', 'address', 'latitude', 'longitude', 'KRS', 'NIP', 'phoneNumber', 'email', 'deleted', 'creatorID', 'changingID', 'remember_token', 'created_at', 'updated_at'
];
}