@php $profile_id=getCurrentProfile(auth()->user()->id, request()); $name = optional(App\Models\UserMultiProfile::where('id', $profile_id)->first())->name ?? null; @endphp @if($name == null)
{{__('frontend.continue_watching')}}
@else
{{__('frontend.continue_watching_for')}} {{ $name }}
@endif @if(count($continuewatchData)>6) {{__('frontend.view_all')}} @endif
@foreach (array_values($continuewatchData) as $data)
@include('frontend::components.card.card_continue_watch' ,['value' =>$data ])
@endforeach