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

{{ $data['p_description'] }}

@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 }} {{ $video->status }}
@method('DELETE') @csrf
@else Sorry!, no videos found. @endif
@stop