@extends($activeTemplate . 'layouts.master') @section('content')
@forelse($purchasedVideos as $purchasedVideo) @empty @endforelse
@lang('Trx') @lang('Transacted') @lang('Amount') @lang('Video Title') @lang('Action')
{{ $purchasedVideo->trx }} {{ showDateTime($purchasedVideo->created_at) }}
{{ diffForHumans($purchasedVideo->created_at) }}
{{ showAmount($purchasedVideo->amount) }} {{ __($purchasedVideo->video->title) }}
@include('Template::partials.empty')
@if ($purchasedVideos->hasPages()) @php echo paginateLinks($purchasedVideos) @endphp @endif
@endsection