@extends('admin.layout') @section('content') @if(session('success'))
{{ session('success') }}
@endif
@forelse ($ebooks as $ebook) @empty @endforelse
Title Featured Image Download Link Actions
{{ $ebook->title }} @if ($ebook->featured_image) Featured Image @else No image @endif Download
{{-- Edit Button --}} Edit {{-- Delete Button --}}
@csrf @method('DELETE')

No eBooks found

Get started by adding your first eBook

@endsection