@extends('layouts.app') @section('title', __('All Books')) @section('content')
@include('layouts.leftside-menubar')
@include('components.pages-bar',['pageTitle' =>''. trans('Manage Library').' /'. trans('All Books').' / '.trans('Book Details').'']) @include('components.sectionbar.library-bar')
{{ $book->title }}
@lang('Book Code') {{ $book->book_code }}
@lang('Book Title') {{ $book->title }}
@lang('Author') {{ $book->author }}
@lang('About') {{ $book->about }}
@lang('Quantity') {{ $book->quantity }}
@lang('Rack No') {{ $book->rackNo }}
@lang('row No') {{ $book->rowNo }}
@lang('Type') {{ $book->type }}
@lang('Price') {{ $book->price }}
@lang('Class') {{ $book->class->class_number }}
@lang('School') {{ $book->school->name }}
@lang('Created At') {{ $book->created_at }}
@lang('Updated At') {{ $book->updated_at }}
@lang('Registered By') {{ $book->user->name }}
@endsection