@extends('admin.layouts.app') @section('panel')
@forelse ($purchasedPlans as $plan) @empty @endforelse
@lang('Name') @lang('Owner') @lang('Buyer') @lang('Videos') @lang('Playlists') @lang('Price') @lang('Purchased Date') @lang('Actions')
{{ __(@$plan->plan->name) }} {{ __($plan->owner?->fullname) }}
@{{ $plan->owner?->username }}
{{ __($plan->user?->fullname) }}
@{{ $plan->user?->username }}
{{ @$plan->plan->videos->count() }} {{ @$plan->plan->playlists->count() }} {{ @$plan->plan->price > 0 ? showAmount(@$plan->plan->price) : '----' }} {{ showDateTime($plan->created_at) }}
{{ diffForHumans($plan->created_at) }}
{{ __($emptyMessage) }}
@if ($purchasedPlans->hasPages()) @endif
@endsection @push('breadcrumb-plugins') @endpush @push('script-lib') @endpush @push('style-lib') @endpush