Fix public status location (#10526)

* Fix public status location
Implementing __toString() seemed to be the most elegant way to fix it.
Added pre-loading for locations too

* Take advantage of new __toString function
This commit is contained in:
Tony Murray
2019-08-19 22:52:21 -05:00
committed by GitHub
parent 610afac9e7
commit d3243bd32e
4 changed files with 10 additions and 11 deletions
+5
View File
@@ -155,4 +155,9 @@ class Location extends Model
{
return $this->hasMany('App\Models\Device', 'location_id');
}
public function __toString()
{
return $this->location;
}
}