@php $wadaplaces = App\Models\WadaPlace::where('status', 'active')->get(); $groupedByCategory = $wadaplaces->groupBy('category.name'); @endphp @push('styles') @endpush
@if ($wadaplaces->isNotEmpty()) @foreach ($groupedByCategory as $categoryName => $places)

{{ $categoryName }}

@endforeach @else
No Places Available

Please check back later.

@endif