forked from s421507/eOSP2
15 lines
417 B
PHP
15 lines
417 B
PHP
|
<?php
|
||
|
|
||
|
namespace App;
|
||
|
|
||
|
use Illuminate\Database\Eloquent\Model;
|
||
|
|
||
|
class fireStation extends Model
|
||
|
{
|
||
|
protected $primaryKey = 'id';
|
||
|
|
||
|
protected $fillable = [
|
||
|
'name', 'number', 'voivodeship', 'county', 'community', 'postOffice', 'zipCode', 'address', 'latitude', 'longtitude', 'KRS', 'NIP', 'phoneNumber', 'email', 'deleted', 'creatorID', 'changingID', 'remember_token', 'created_at', 'updated_at'
|
||
|
];
|
||
|
}
|