@extends('admin.layouts.app')
@section('title', 'Amenities Master')
@section('breadcrumb')
Properties
Amenities
@endsection
@section('heading', 'Amenities Master')
@section('subheading', 'Manage property amenities and facilities.')
@section('content')
{{-- Add Form --}}
{{-- Table --}}
| ID |
Amenity |
Icon |
Category |
Properties Using |
Status |
Actions |
@foreach ([
['id' => 1, 'name' => 'Swimming Pool', 'icon' => 'pool', 'category' => 'Recreation', 'count' => 892, 'status' => 1],
['id' => 2, 'name' => 'Gym', 'icon' => 'gym', 'category' => 'Lifestyle', 'count' => 1245, 'status' => 1],
['id' => 3, 'name' => 'Parking', 'icon' => 'parking', 'category' => 'Basic', 'count' => 2654, 'status' => 1],
['id' => 4, 'name' => 'Lift', 'icon' => 'lift', 'category' => 'Basic', 'count' => 1876, 'status' => 1],
['id' => 5, 'name' => 'Security', 'icon' => 'security', 'category' => 'Safety', 'count' => 2412, 'status' => 1],
['id' => 6, 'name' => 'Power Backup', 'icon' => 'power', 'category' => 'Basic', 'count' => 1534, 'status' => 1],
['id' => 7, 'name' => 'Garden', 'icon' => 'garden', 'category' => 'Recreation', 'count' => 678, 'status' => 1],
['id' => 8, 'name' => 'Club House', 'icon' => 'club', 'category' => 'Lifestyle', 'count' => 534, 'status' => 1],
] as $amenity)
| {{ $amenity['id'] }} |
{{ $amenity['name'] }} |
{{ $amenity['icon'] }} |
{{ $amenity['category'] }} |
{{ number_format($amenity['count']) }} |
|
|
@endforeach
@endsection