@extends('admin.layout.app', ['title' => 'Videos Section']) @section('content')
@if (session()->has('success'))
@if (is_array(session()->get('success')))
    @foreach (session()->get('success') as $message)
  • {{ $message }}
  • @endforeach
@else {{ session()->get('success') }} @endif
@endif @if (count($errors) > 0) @if ($errors->any()) @endif @endif

{{ __('keywords.Videos') }}

@csrf


@if ($videos->isNotEmpty()) @php $i=1; @endphp @foreach ($videos as $video) @php $i++; @endphp @endforeach @else @for ($i = 1; $i < 9; $i++) @endfor @endif
# {{ __('keywords.Video') }} {{ __('keywords.Actions') }}
{{ $i }}  
{{ __('keywords.No data found') }}

{{ $videos->links('pagination::bootstrap-4') }}
@push('scripts') @endpush @endsection