@extends('layouts.admin') @section('title', 'Media Library') @section('header', 'Media Library') @section('content')
All Images Videos
@foreach($posts as $post)
@if($post->thumbnail_path) @elseif($post->media_path) @if($post->type === 'video')
@else @endif @endif

{{ $post->title }}

{{ $post->type }}

@csrf
@endforeach @if($posts->isEmpty())
No media found
@endif
{{ $posts->links() }}
@endsection