@extends('web.layout') @section('web_container')



লেখকের নামঃ {{$author->author_name}}

লেখক সম্পর্কিত তথ্যঃ

{{$author->author_bio}}

উল্ল্যেখ যোগ্য গ্রন্থ

@foreach($author_books as $author_book) @php $book =\App\Book::select('*')->where('book_name', trim($author_book))->first(); @endphp @if($book == null)
{{$author_book}}
@else
{{$author_book}}
@endif @endforeach
@endsection