@extends('layouts.app') @section('title', __('All Books')) @section('content')
@include('layouts.leftside-menubar')
@include('components.pages-bar',['pageTitle' =>''. trans('Manage Library').' / '.trans('All Books').'']) @include('components.sectionbar.library-bar')
@if (session('status'))
{{ session('status') }}
@endif {{ $books->links() }}
@foreach($books as $book) @endforeach
# @lang('Title') @lang('Code') @lang('Author') @lang('Type') @lang('Quantity') @lang('Actions')
{{ ($loop->index + 1) }} {{ $book->title }} {{ $book->book_code }} {{ $book->author }} {{ $book->type }} {{ $book->quantity }}
{{ $books->links() }}
@endsection