@extends('backend.layouts.app') @section('title', $data['p_heading']) @section('content')
{{ $data['p_heading'] }}

{{ $data['p_description'] }}

@if(sizeof($data['videos']) > 0)
@foreach($data['videos'] as $video) @endforeach
ID Thumbnail Title Source Video ID Position Status Actions
{{ $video->id }} {{ $video->title }} {{ $video->source }} {{ $video->video_id }} {{ $video->position }} @if($video->status == 'Y') Active @else In-active @endif
@method('DELETE') @csrf
@else Sorry!, no videos found. @endif
@stop