@extends('layouts.app') @section('title', 'Where Curriculum Meets Character.') @section('content')

Where Curriculum Meets Character.

Empowering educators and students through the IPDC Workbook — aligned with NEP 2020’s vision of holistic development.

@foreach($featuredBooks->take(4) as $book)
{{ $book->title }}

{{ $book->title }}

{{ $book->author }}

₹{{ number_format($book->price, 2) }}

@endforeach

Browse Our Collection

@if($books->total() > 0)

Showing {{ $books->firstItem() }}-{{ $books->lastItem() }} of {{ $books->total() }} results @if($request->search) for "{{ $request->search }}" @endif

@endif @if($books->count() > 0)
@foreach($books as $book)
{{ $book->title }}
{{ $book->category->name }} @if($book->language !== 'English') {{ $book->language }} @endif

{{ $book->title }}

by {{ $book->author }}

@if($book->description)

{{ $book->description }}

@endif
₹{{ number_format($book->price, 2) }} @if($book->shipping_price > 0) + ₹{{ number_format($book->shipping_price, 2) }} shipping @else Free shipping @endif
{{ $book->stock_status }}
@auth @if($book->is_available)
@csrf
@if(!Auth::user()->hasInWishlist($book))
@csrf
@else @endif
@else @endif @else @endauth View Details
@endforeach
{{ $books->links() }}
@else

No books found

Try adjusting your search criteria or browse all books.

@endif
@if($featuredBooks->count() > 0) @endif @endsection