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

{{__('user.My Wants')}}

@foreach ($wants as $index => $property)
@if ($property->approve_by_admin == 'approved') @if ($property->status == 'enable')
{{__('user.Enable')}}
@else
{{__('user.Disable')}}
@endif @else @if ($property->approve_by_admin == 'pending')
{{__('user.Awaiting')}}
@elseif ($property->approve_by_admin == 'reject')
{{__('user.Reject')}}
@endif @endif
@if ($property->purpose == 'rent') {{__('user.For Rent')}} @else {{__('user.For Sale')}} @endif

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

{{$property->cities}}

{{ $property->created_at->format('d M, Y') }}

2
5
@endforeach
{{ $wants->links('custom_pagination') }}
bg
bg
bg
@endsection