@extends('layout.app') @section('page-title', "Wishlist") @section('breadcrumb')
Home My Wishlist
@endsection @section('content') @if(count($products) > 0)
@include('partials._product_list_layout', ['products' => $products])
@else
You don't have any favorite products yet!
@endif @endsection @section('modals') @if(count($products) > 0) @include('partials.modals._quick_view') @include('partials._filter') @endif @endsection @push('after-foot-js') @if(count($products) > 0) @endif @endpush