@extends('layouts.admin.index') @section('content')
@if(session('success')) @endif @if(session('error')) @endif
Books List
@forelse($books as $book) @empty @endforelse
Image Title Author Category Price Stock Status Actions
{{ $book->title }} {{ $book->title }} @if($book->is_featured) Featured @endif {{ $book->author }} {{ $book->category->name ?? 'N/A' }} @if($book->is_on_sale) ₹{{ number_format($book->sale_price, 2) }} ₹{{ number_format($book->price, 2) }} @else ₹{{ number_format($book->price, 2) }} @endif {{ $book->stock_quantity }}
@csrf

No books found

@if($books->hasPages())
{{ $books->appends(request()->query())->links() }}
@endif
@endsection