@extends($activeTemplate . 'layouts.frontend') @section('content')

{{ __($pageTitle) }}

@if (!blank($watchLaters))
@endif @forelse ($watchLaters as $watchLater) @php $user = auth()->user(); $purchasedTrue = @$user ?->purchasedVideos() ->where('video_id', $watchLater->video->id) ->exists(); @endphp
@if (!$watchLater->video->stock_video || $watchLater->video->user_id == auth()->id() || $purchasedTrue) @include('Template::partials.video.video_loader') @else Video Thumb {{ gs('cur_sym') }}{{ showAmount($watchLater->video->price, currencyFormat: false) }} @endif
{{ __($watchLater->video->title) }}
{{ __($watchLater->video->user->channel_name) }} {{ formatNumber($watchLater->video->views) }} @lang('views')

@php echo strLimit($watchLater->video->description, 200); @endphp

@empty
@include('Template::partials.empty')
@endforelse
@include('Template::partials.share') @endsection @push('style-lib') @endpush @push('script-lib') @endpush @push('script') @endpush