@extends('layouts.app') @section('title', 'Ebooks') @section('page-title', 'Ebooks') @section('breadcrumb', 'More Products / Ebooks') @section('content')
Back
@if(request('sort')) @endif @if(request('status')) @endif
Create
Filters
@if(request('search')) @endif
@if($ebooks->count())
@foreach($ebooks as $ebook) @endforeach
Title Price Security Status Created Actions
{{ $ebook->title }} @if($ebook->is_free) Free @else ₹{{ number_format($ebook->price, 0) }} @endif {{ $ebook->contentSecurityLabel() }} {{ ucfirst($ebook->status) }} {{ $ebook->created_at->format('M d, Y') }}
@csrf @method('DELETE')
{{ $ebooks->links() }}
@else

No results found

Create your first ebook to get started.

Create
@endif
@endsection