@extends('user.dashboard_layout')
@section('title')
{{ __('translate.User WishList Dashboard') }}
@endsection
@section('breadcrumb')
{{ __('translate.WishList') }}
@endsection
@section('dashboard-content')
@if($wishlists->isNotEmpty())
@foreach($wishlists as $product)
@include('_product')
@endforeach
@else
@include('wishlist::not_found')
@endif
@endsection
@push('style_section')
@endpush
@push('js_section')
@endpush