web-panel/app/ParkingLot.php

20 lines
462 B
PHP
Raw Normal View History

2019-02-09 18:06:52 +00:00
<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class ParkingLot extends Model
{
2019-02-09 22:35:50 +00:00
protected $fillable = [ 'firebase_id', 'stall_coordinates', 'reference_image', 'number_of_columns', 'name' ];
2019-02-09 18:06:52 +00:00
public function get_coordinates(){
return json_decode( $this->stall_coordinates );
}
public function set_coordinates( $coordinates ){
$this->stall_coordinates = json_encode( $coordinates );
$this->save();
}
}