@extends('backend.dashboard') @section('content')

Early Learning List

Add Early Learning
{{-- --}} @forelse($bookOffers as $key => $bookOffer) {{-- --}} @empty @endforelse
SI
Image
Category Title
Title
Author
Price
Priority
Status
Action
{{ $bookOffers->firstItem() + $key }} @if($bookOffer->image) @else No Image @endif {{ $bookOffer->category->title ?? 'No Category' }} {{ $bookOffer->title }} {{ $bookOffer->author }}{{ number_format($bookOffer->price, 2) }} ৳{{ $bookOffer->priority }} {{ $bookOffer->status == 1 ? 'Active' : 'De-Active' }}
No popular items found.
{{ $bookOffers->appends(request()->query())->links() }}
@endsection