@extends('dashboardLayout.frontlayout') @section('content') @php use App\Models\Frontend\ContentManagement; $mydrafts = ContentManagement::getLike('mydrafts_title','sell_bussiness'); $mydraftsub = ContentManagement::getLike('mydrafts_sub_title','sell_bussiness'); @endphp
@include('user.dashboard.partials.sidebar')
{{ isset($mydrafts) && !empty($mydrafts) ? __dl($mydrafts,'mydrafts_title'): '' }}

{{ isset($mydraftsub) && !empty($mydraftsub) ? __dl($mydraftsub,'mydrafts_sub_title'): '' }}

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