@extends('admin.layouts.content') @section('content')
@include('components.card_header', ['title' => 'Media', 'create_title' => 'New Media', 'create' => route('New Media')])
@forelse($media as $m) @empty @endforelse
# Title Length Size Status Created By Created At Action
{!! $loop->iteration !!} {!! $m->title !!} {!! $m->is_active ? 'Active' : 'Inactive' !!} {!! $m->user->full_name !!} {!! $m->created_at->format('F d, Y h:i A') !!} @include('components.edit', ['route' => route('Edit Media', ['id' => $m->id])])
No record(s) found.

@endsection