@extends('layouts.admin.admin') @section('content')
All Videos
@include('layouts.admin.alerts') @if (count($videos)>0) @foreach ($videos as $key => $video) @endforeach
# Album Video Url Action
{{ $key+1 }} {{ $video->caption }}
@csrf
@else
No Video Added Yet
@endif
@endsection