@extends('admin.layouts.app') @section('title', 'Amenities') @section('content')

Amenities

Manage property amenities

Add Amenity
@foreach ($amenities->groupBy('category') as $category => $categoryAmenities)

{{ ucfirst($category) }}

@foreach ($categoryAmenities as $amenity)
@if (!$amenity->is_active) @endif {{ $amenity->name }} ({{ $amenity->properties_count }})
@endforeach
@endforeach
@endsection