diff --git a/resources/views/locations/show.blade.php b/resources/views/locations/show.blade.php
index ab6e403..5e18bd7 100644
--- a/resources/views/locations/show.blade.php
+++ b/resources/views/locations/show.blade.php
@@ -18,6 +18,7 @@
+ @if(!empty($data))
@foreach($data as $l)
@@ -40,6 +41,11 @@
|
@endforeach
+ @else
+
+ No services found for {{ $location ->name }} |
+
+ @endif
diff --git a/resources/views/providers/show.blade.php b/resources/views/providers/show.blade.php
index 12d0de4..9898d41 100644
--- a/resources/views/providers/show.blade.php
+++ b/resources/views/providers/show.blade.php
@@ -18,6 +18,7 @@
+ @if(!empty($data))
@foreach($data as $l)
@@ -40,6 +41,11 @@
|
@endforeach
+ @else
+
+ No services found for {{ $provider->name }} |
+
+ @endif