diff --git a/resources/views/locations/index.blade.php b/resources/views/locations/index.blade.php index f5b50f8..6461e07 100644 --- a/resources/views/locations/index.blade.php +++ b/resources/views/locations/index.blade.php @@ -18,14 +18,14 @@ @if(!empty($locations)) @foreach($locations as $location) - {{ $location->name }} + {{ $location['name'] }} -
- + + id="{{$location['id']}}" title="{{$location['name']}}">
diff --git a/resources/views/os/index.blade.php b/resources/views/os/index.blade.php index 8259029..44811bb 100644 --- a/resources/views/os/index.blade.php +++ b/resources/views/os/index.blade.php @@ -18,11 +18,11 @@ @if(!empty($os)) @foreach($os as $o) - {{ $o->name }} + {{ $o['name'] }} -
+ + id="{{$o['id']}}" title="{{$o['name']}}">
diff --git a/resources/views/providers/index.blade.php b/resources/views/providers/index.blade.php index 2661673..3d8be9a 100644 --- a/resources/views/providers/index.blade.php +++ b/resources/views/providers/index.blade.php @@ -18,14 +18,14 @@ @if(!empty($providers)) @foreach($providers as $provider) - {{ $provider->name }} + {{ $provider['name'] }} -
- + + id="{{$provider['id']}}" title="{{$provider['name']}}">