@extends('library.admin.layouts.admin_design') @section('title') View Books - School Library @endsection @section('content')

Books

View All Books

{{----}} @foreach($book as $cat) @foreach($author as $ath) @if($cat->author_id == $ath->id) @endif @endforeach @endforeach
# Book Title Image Publisher Author Quantity PriceAvailable BooksActions
{{$loop->index + 1}} {{$cat->title}} {{$cat->image}} {{$cat->publisher}}{{$ath->name}} @if($cat->quantity == 0)
{{'Out of Stock'}}
@else {{$cat->quantity}} @endif
{{$cat->price}}
@endsection @section('scripts') @endsection