@extends('admin.layout.master') @section('content')
Live Listings

{{count($liveBid1)}}

View
Expired Listings

{{count($expiredBid)}}

View

Latest Listings

@if(!$liveBid->isEmpty()) @foreach($liveBid as $val) @endforeach @endif
Listing Client End Date
{{str_limit(strip_tags($val->prop_name), 20)}}
{{str_limit(strip_tags($val->user->name), 15)}}
@if($val->endDate != '') {{date('d-M-y', strtotime($val->endDate))}} @else OPEN @endif

Latest Bids

@if(!$latestBid->isEmpty()) @foreach($latestBid as $val) @if($val->property['status'] == 1)
{{$val->property['prop_name']}}

{!!str_limit(strip_tags($val->property['prop_desc']), 15)!!}

@endif @endforeach @else
No Latest Bid Available
@endif

Latest New Clients

@if(!$user->isEmpty()) @foreach($user as $val) @endforeach @endif
Company User Email Register
{{str_limit(strip_tags($val->company_name), 20)}}
@if($val->image != NULL)
avatar-img
@else
avatar-img
@endif
{{str_limit(strip_tags($val->name), 15)}}
{{$val->email}} {{date('d-M-Y', strtotime($val->created_at))}}

Listings Expiring Today

@if(!$todayExpired->isEmpty()) @foreach($todayExpired as $val)
{{$val->prop_name}}

{!!str_limit(strip_tags($val->prop_desc), 15)!!}

@endforeach @else
No Expiring Listings Available
@endif

Latest Properties

@foreach($property as $val) @endforeach

Latest Vehicles

@foreach($vehicle as $val) @endforeach
@endsection @section('scripts') @endsection