@extends('dashboardLayout.frontlayout') @section('content') @php use App\Models\Frontend\ContentManagement; $videoTitle = ContentManagement::getLike('video_title','video'); $videoSubTitle = ContentManagement::getLike('video_sub_title','video'); @endphp
@include('user.dashboard.partials.sidebar')
{{ isset($videoTitle) && !empty($videoTitle) ? __dl($videoTitle,'video_title') : ''}}

{{ isset($videoSubTitle) && !empty($videoSubTitle) ? __dl($videoSubTitle,'video_sub_title') : ''}}

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