@if(isset($listing) && $listing )
@foreach ($listing as $key => $row)
|
{{isset($row->state) && $row->state ? ucfirst($row->state) : "-"}}
|
{{isset($row->city) && $row->city ? ucfirst($row->city) : "-"}}
|
{{isset($row->price) && $row->price ? priceFormat($row->price) : "-"}}
|
{{--
{{isset($row->selling_price) && $row->selling_price ? priceFormat($row->selling_price) : "-"}}
| --}}
|
{{_dt($row->created)}}
|
@endforeach
@endif