@extends('admin.layouts.app') @section('content')
{{-- navbar - top --}} @include('admin.layouts.topbar')
{{-- navbar - side --}} @include('admin.layouts.nav')

{{ __('Manage Content / Company Video') }}

@if(Request::exists('search')) @else @endif
@forelse($mc as $ct) @empty @endforelse
{{ __('Order ID') }} {{ __('Youtube Video ID') }} {{ __('Description') }} {{ __('Actions') }}
{{ $ct->order_id }} {{ $ct->video_id }} {{ $ct->description }} Edit
{{ __('No Results Found!') }}
{{ $mc->withQueryString()->render("pagination::bootstrap-5") }}
@endsection @extends('admin.layouts.footer')