@extends('layouts.user') @section('title') {{ __('contents.myRentals') }} @endsection @section('content')
| # | {{ __('contents.title') }} | {{ __('contents.price') }} | {{ __('contents.propertyType') }} | {{ __('contents.views') }} | {{ __('contents.impressions') }} | @if($settings->verified_properties_only == 'yes'){{ __('contents.status') }} | @endif{{ __('contents.actions') }} |
|---|---|---|---|---|---|---|---|
| {{ $i++ }} | {{ $p->{'title_'.app()->getLocale() } }} | {{ $settings->currency_symbol." ".$p->price." ".$settings->currency_code }} | @php $p_type = \App\Models\Property_Type::findorfail($p->property_type); @endphp{{ $p_type->{'title_'.app()->getLocale() } }} | {{ $p->views}} | {{ $p->impressions}} | @if($settings->verified_properties_only == 'yes')
@if($p->status == 'verified')
Verified
@elseif($p->status == 'pending')
Pending
@elseif($aminity->status == 'unverified')
Disaproved
@endif
|
@endif
|
| {{ __('contents.noPropertyFound') }} | @if($settings->verified_properties_only == 'yes') | @endif |