@extends('admin.layouts.app') @section('panel')
@forelse($videos as $video) @empty @endforelse
@lang('Title') @lang('Username / Channel Name') @lang('Video Type') @lang('Visibility') @lang('Stock Video') @lang('Price') @lang('Step Complete') @lang('Status') @lang('Action')
{{ __(strLimit($video->title, 30)) }} @{{ __(@$video->user->username) }}
{{ __(@$video->user->channel_name) }}
@if ($video->is_shorts_video) @lang('Shorts') @else @lang('Reguler') @endif @php echo $video->visibilityStatus; @endphp @if ($video->stock_video) @lang('Yes') @else @lang('No') @endif @if ($video->stock_video) {{ showAmount($video->price) }} @else @lang('N/A') @endif @if ($video->is_shorts_video) {{ $video->step }} @lang('of') 3 @else {{ $video->step }} @lang('of') 4 @endif @php echo $video->statusBadge; @endphp
{{ __($emptyMessage) }}
@if ($videos->hasPages()) @endif
@endsection @push('breadcrumb-plugins') @endpush