@extends('layout') @section('title') {{__('user.Wishlist')}} @endsection @section('meta') @endsection @section('frontend-content')
@include('user.sidebar')

{{__('user.Wishlist')}}

@foreach ($properties as $property_item)
@if ($property_item->purpose == 'rent') {{__('user.For Rent')}} @else {{__('user.For Sale')}} @endif
@csrf @method('DELETE')
{{ $currency_icon }}{{ html_decode(num_format($property_item->price)) }} @if ($property_item->purpose == 'rent') /{{ $property_item->rent_period }} @endif

{{ html_decode($property_item->title) }}

address

{{ html_decode($property_item->address) }}

  • total_bedroom{{ $property_item->total_bedroom }} {{__('user.Bed')}}
  • total_bathroom{{ $property_item->total_bathroom }} {{__('user.Bath')}}
  • total_area{{ html_decode($property_item->total_area) }} {{__('user.m2')}}
@endforeach
{{ $properties->links('custom_pagination') }}
bg
bg
bg
@endsection