/home/techb158/ileadtechnology.com/SSM/resources/views/print/library
Edit: /home/techb158/ileadtechnology.com/SSM/resources/views/print/library/book.blade.php (1515B)
@include('print.print-layout.header')
{{config('config.default_academic_session.name')}}
{{trans('library.book').' '.trans('general.total_result_count',['count' => count($books)])}}
| {{trans('library.book_title')}} |
{{trans('library.book_author')}} |
{{trans('library.book_language')}} |
{{trans('library.book_topic')}} |
{{trans('library.book_publisher')}} |
{{trans('library.book_isbn_number')}} |
{{trans('library.book_price')}} |
{{trans('library.book_page')}} |
{{trans('library.book_quantity')}} |
@foreach($books as $book)
| {{$book->title}} |
{{$book->BookAuthor->name}} |
{{$book->BookLanguage->name}} |
{{$book->BookTopic->name}} |
{{$book->BookPublisher->name}} |
{{$book->isbn_number}} |
{{currency($book->price,1)}} |
{{$book->page}} |
{{$book->book_post_details_count}} |
@endforeach
@include('print.print-layout.footer')