@extends('public.layout.app') @section('title', __('front.library')) @section('body')

{{ __('front.digital_library') }}

{{ __('front.reset') }}
@foreach($books as $b)
{{ $b->title }}

{{ $b->author->name ?? '' }}

{{ __('front.details') }}@if($b->type=='digital' && $b->file_path){{ __('front.download') }}@endif
@endforeach
{{ $books->links('pagination::bootstrap-4') }}
@endsection