@extends('front.app_front') @section('content')

{{ ALL_LISTINGS }}

@include('front.customer_sidebar')
@if($listing->isEmpty()) {{ NO_RESULT_FOUND }} @else
@php $i=0; @endphp @foreach($listing as $row) @endforeach
{{ SERIAL }} {{ FEATURED_PHOTO }} {{ LISTING_NAME }} {{ BRAND }} {{ LOCATION }} {{ STATUS }} {{ ACTION }}
{{ $loop->iteration }} {{ $row->listing_name }}
@if($row->is_featured == 'Yes') {{ FEATURED }} @else {{ NOT_FEATURED }} @endif
{{ $row->rListingBrand->listing_brand_name }} {{ $row->rListingLocation->listing_location_name }} @if($row->listing_status == 'Active')
@else
@endif {{ $row->listing_status }}
@endif
@endsection