@extends('library.admin.layouts.admin_design')
@section('title')
View Books - School Library
@endsection
@section('content')
| # |
Book Title |
Image |
Publisher |
Author |
Quantity |
Price |
{{--Available Books | --}}
Actions |
@foreach($book as $cat)
| {{$loop->index + 1}} |
{{$cat->title}} |
|
{{$cat->publisher}} |
@foreach($author as $ath)
@if($cat->author_id == $ath->id)
{{$ath->name}} |
@endif
@endforeach
@if($cat->quantity == 0)
{{'Out of Stock'}}
@else
{{$cat->quantity}} @endif
|
{{$cat->price}} |
|
@endforeach
@endsection
@section('scripts')
@endsection