@extends('layouts.app') @section('title', 'Settings — Property Tags') @section('page-title', 'Property Tags') @section('content')

Property Tags / Amenities

Manage tags that can be attached to properties (e.g. Swimming Pool, Garden, Parking)
@forelse($tags as $tag) @empty @endforelse
# Tag Name Slug Properties Status Actions
{{ $loop->iteration }} {{ $tag->name }} {{ $tag->slug }} {{ $tag->properties_count }} @if($tag->is_active) Active @else Inactive @endif
@csrf @method('PATCH')
@csrf @method('DELETE')
No property tags defined yet.
@push('scripts') @endpush @endsection