@extends('layouts.web.index') @php use Illuminate\Support\Str; @endphp @section('content') @include('layouts.web.header')
BOKIFA BOOKSTORE

All books at least 50% off list prices every day

Discover thousands of books across all genres. From bestsellers to hidden gems, find your next great read at unbeatable prices.

@if(isset($data['featuredBooks']) && $data['featuredBooks']->count() > 0)
{{ $data['featuredBooks'][0]->title }}
@endif

{{ \App\Models\Book::where('is_active', true)->count() }}

Total Books

{{ \App\Models\BookCategory::where('is_active', true)->count() }}

Categories

{{ \App\Models\Book::where('is_active', true)->whereNotNull('sale_price')->whereColumn('sale_price', '<', 'price')->count() }}

Books on Sale

97%

Happy Customers

@if(isset($data['categories']) && $data['categories']->count() > 0)

Top Categories

Browse books by category

@endif @if(isset($data['featuredBooks']) && $data['featuredBooks']->count() > 0) @endif @if(isset($data['bestsellers']) && $data['bestsellers']->count() > 0)

Current Bestselling Books

Most popular books this month

Browse All
@foreach($data['bestsellers']->take(6) as $book)
{{ $book->title }} @if($book->is_on_sale) {{ round((($book->price - $book->sale_price) / $book->price) * 100) }}% OFF @endif
{{ Str::limit($book->title, 50) }}

by {{ $book->author }}

(4.0)
@if($book->is_on_sale) ₹{{ number_format($book->sale_price, 2) }} ₹{{ number_format($book->price, 2) }} @else ₹{{ number_format($book->price, 2) }} @endif
@endforeach
@endif @if(isset($data['saleBooks']) && $data['saleBooks']->count() > 0)

Half Price Books

Limited time offers - don't miss out!

Browse All
@foreach($data['saleBooks']->take(6) as $book)
{{ $book->title }} {{ round((($book->price - $book->sale_price) / $book->price) * 100) }}% OFF
{{ Str::limit($book->title, 50) }}

by {{ $book->author }}

(4.0)
${{ number_format($book->sale_price, 2) }} ${{ number_format($book->price, 2) }}
@endforeach
@endif
Fast Delivery

Free standard delivery on all orders

Best Prices & Offers

Multiple gift options available

Great Daily Deal

Orders $50 or more

Click & Collect

Check your local stores now

@include('layouts.web.footer') @endsection