forked from s421507/eOSP2
1
0
Fork 0

Longitude fix

This commit is contained in:
czup 2019-10-06 08:48:24 +02:00
parent 72f21d4a94
commit 58aff03605
1 changed files with 1 additions and 1 deletions

View File

@ -10,6 +10,6 @@ class fireStation extends Model
protected $table = 'fireStations';
protected $fillable = [
'name', 'number', 'voivodeship', 'county', 'community', 'postOffice', 'zipCode', 'address', 'latitude', 'long itude', 'KRS', 'NIP', 'phoneNumber', 'email', 'deleted', 'creatorID', 'changingID', 'remember_token', 'created_at', 'updated_at'
'name', 'number', 'voivodeship', 'county', 'community', 'postOffice', 'zipCode', 'address', 'latitude', 'longitude', 'KRS', 'NIP', 'phoneNumber', 'email', 'deleted', 'creatorID', 'changingID', 'remember_token', 'created_at', 'updated_at'
];
}