{{ session('success') }}
@endif
@if(session('error'))
{{ session('error') }}
@endif
Books List
| Image | Title | Author | Category | Price | Stock | Status | Actions |
|---|---|---|---|---|---|---|---|
|
{{ $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 }} | ||
|
No books found |
|||||||
{{ $books->appends(request()->query())->links() }}
@endif