@extends('layouts.app') @section('title') Home @endsection @section('meta') @endsection @section('content')

"Perpustakaan digital berbahasa Indonesia terlengkap dengan lebih dari {{ \App\Models\Book::count() }} buku, {{ \App\Models\Author::count() }} penulis, {{ \App\Models\Publisher::count() }} penerbit. Tidak untuk dikomersialkan."

- Buku diupdate berkala -

Pilihan Editor

@foreach($books as $book)
{{ $book->title }}
{{ $book->version }}
{{ $book->author->name ?? '' }}
@foreach($book->categories as $category) {{ $category->name }} @endforeach
{!! $book->rating > 0 ? '' : '' !!} {!! $book->rating > 1 ? '' : '' !!} {!! $book->rating > 2 ? '' : '' !!} {!! $book->rating > 3 ? '' : '' !!} {!! $book->rating > 4 ? '' : '' !!} ({{ $book->bookNotes->count() }} review)
{{ $book->view }} dilihat
@endforeach

Kategori

@foreach($categories as $category)
@csrf
@endforeach

Buku Baru

@endsection @section('scripts') @endsection