@extends('layouts.landing') @section('content')

{{ __('messages.browse_properties') ?? 'Browse Properties' }}

{{ __('messages.find_your_perfect_property') ?? 'Find your perfect property from our extensive collection' }}

TZS
{{ __('messages.showing') ?? 'Showing' }} {{ $properties->firstItem() ?? 0 }} - {{ $properties->lastItem() ?? 0 }} {{ __('messages.of') ?? 'of' }} {{ $properties->total() }} {{ __('messages.properties') ?? 'properties' }}
@if(request()->anyFilled(['location', 'type', 'status', 'max_price'])) {{ __('messages.clear') ?? 'Clear' }} @endif
@if($properties->count() > 0)
@foreach($properties as $property) @endforeach
{{ $properties->links('pagination.tailwind') }}
@else

{{ __('messages.no_properties_found') ?? 'No Properties Found' }}

{{ __('messages.try_adjusting_filters') ?? 'Try adjusting your filters or search criteria to find more properties.' }}

@endif
@endsection