@extends('layouts.admin')
@section('title', 'Media Library')
@section('header', 'Media Library')
@section('content')
@foreach($posts as $post)
@if($post->thumbnail_path)
 }})
@elseif($post->media_path)
@if($post->type === 'video')
@else
 }})
@endif
@endif
{{ $post->title }}
{{ $post->type }}
@endforeach
@if($posts->isEmpty())
No media found
@endif