@extends('layouts.app') @section('content') {{-- HERO --}}

Baca.
Simpan.
Temukan.

Ribuan judul buku tersedia. Gratis, tanpa batas.

{{-- LIBRARY SAYA --}} @auth @if(!empty($myLibrary))

Library Saya

@foreach($myLibrary as $book)
{{-- Cover --}}
@if($book['cover_url']) {{ $book['title'] }} @else
@endif
{{-- Info --}}

{{ $book['title'] }}

{{ $book['author'] ?? '-' }}

{{-- Status badge --}} @php $statusColor = match($book['status']) { 'reading' => 'text-accent', 'finished' => 'text-green-400', default => 'text-muted', }; $statusLabel = match($book['status']) { 'reading' => 'Sedang Dibaca', 'wishlist' => 'Wishlist', 'finished' => 'Selesai', default => ucfirst($book['status']), }; @endphp

{{ $statusLabel }}

{{-- Actions --}}
@endforeach
@endif @endauth {{-- REKOMENDASI --}}

Rekomendasi

@include('books._book_grid', ['books' => $recommendations])
{{-- TRENDING --}}

Trending

@include('books._book_grid', ['books' => $trending])
{{-- MOST READ --}}

Most Read

@include('books._book_grid', ['books' => $mostRead])
@endsection