@extends('frontend/layouts_frontend/master_frontend') @section('title') Apartments - Relocate Uganda @endsection @section('extra_styles') @endsection {{-- CONTENT SECTION --}} @section('content')

Apartments Available

We have the properties

{{-- --}} {{-- PROPERTIES GRID --}}
{{-- SEARCH --}} {{-- END OF SEARCH --}}
{{-- Properties Loop --}} @forelse($apartments as $apartment)
{{-- @if (!empty($apartment->featured_photo)) --}} {{-- photo --}} preview {{-- @else N/A @endif --}}
@if ($apartment->property_booked_status == 1) Available @elseif($apartment->property_booked_status == 0) Booked @else N/A @endif
@if (!empty($apartment->price)) {{ $apartment->price }} @else N/A @endif /mo
@if (!empty($apartment->address)) {{ $apartment->address }} @else No Address @endif
  • Beds: @if (!empty($apartment->beds)) {{ $apartment->beds }} @else N/A @endif
  • Baths: @if (!empty($apartment->bathrooms)) {{ $apartment->bathrooms }} @else N/A @endif
@empty
No apartments found..
@endforelse {{-- End of properties loop --}}
{{-- END OF PROPERTIES GRID --}}
@endsection {{-- END OF MAIN CONTENT SECTION --}} @section('extra_scripts') @endsection