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

{{ WISHLIST }}

@include('front.customer_sidebar')
@if($wishlist->isEmpty()) {{ NO_RESULT_FOUND }} @else
@php $i=0; @endphp @foreach($wishlist as $row) @php $listing_detail = \App\Models\Listing::where('id', $row->listing_id)->first(); @endphp @endforeach
{{ SERIAL }} {{ FEATURED_PHOTO }} {{ NAME }} {{ ACTION }}
{{ $loop->iteration }} {{ $listing_detail->listing_name }}
{{ SEE_DETAIL }}
{{ $wishlist->links() }}
@endif
@endsection