@extends('backend.layouts.app') @section('title', \App\Http\Helpers\MenuHelper::getPageTitle()) @section('content')
| # | Video Slug | Title | Status | Video Date | Action |
|---|---|---|---|---|---|
| {{ ($videos->currentPage() - 1) * $videos->perPage() + $loop->iteration }} | {{ $video->video_code ?? '-' }} | {{ $mainTranslation->video_translation_title ?? '-' }} @if($video->translations->count() > 1) {{ $video->translations->count() }} languages @endif | @if($video->video_status === 'ACTIVE') {{ $statuses['ACTIVE'] ?? 'Active' }} @elseif($video->video_status === 'INACTIVE') {{ $statuses['INACTIVE'] ?? 'Inactive' }} @else No Status @endif | {{ $video->video_date ? $video->video_date->format('d-m-Y') : '-' }} | |
No videos foundClick "Create New" to add your first entry. |
|||||