@extends('frontend.layouts.app') @section('title') {{ $title ?? 'My Favorites' }} @endsection @section('meta') @endsection @push('style') @endpush @section('content') @include('frontend.layouts.includes.breadcrumb', ['links'=>[[$title => route('frontend.favorites') ]]])

My Favorites

@if ($ads->count()==0)

No favorites yet

Items you favorite will appear here

Browse Items
@else
@foreach ($ads as $ad)
@include('frontend.ads.fav-list-item')
@endforeach
@endif {{-- --}}
@endsection @push('script') @endpush