@extends('dashboardLayout.frontlayout') @section('content') @php use App\Models\Frontend\ContentManagement; $title = ContentManagement::getLike('wishlist_title','wishlist'); $description = ContentManagement::getLike('wishlist_description','wishlist'); @endphp
@include('user.dashboard.partials.sidebar')
{{ isset($title) && !empty($title) ? __dl($title,'wishlist_title') : 'My Wishlist'}}

{{ isset($description) && !empty($description) ? __dl($description,'wishlist_description') : '-'}}

@include('user.dashboard.wishlist.partials.navbar')
@if(!empty($listing) && count($listing)>0) @include('user.dashboard.wishlist.videos.listingLoop') @else
@endif
@if(!empty($listing) && count($listing)>0) @include('frontend.partials.simplePagination',['pagination' => $listing,'url' => route('frontend.dashboard.wishlist.videos')]) @endif
@endsection