@extends('backend.layouts.master')
@section('title','All Videos')
@section('main-content')
@include('backend.layouts.notification')
@if(count($videos)>0)
S.N. |
Title |
Embedded Link |
Status |
Action |
@foreach($videos as $video)
{{$video->id}} |
{{ $video->title }} |
|
@if($video->status=='active')
{{$video->status}}
@else
{{$video->status}}
@endif
|
|
@endforeach
@else
No videos found!!! Please add video
@endif
@endsection