@extends('layouts.app') @section('title','Book Author List') @section('content')
@foreach ($bookauthors as $item) @endforeach
# Name Name Bangla Location Status Action
{{ $loop->iteration }} {{ $item->name }} {{ $item->name_ban }} {{ $item->bath_place }} @if($item->status == 'Active') {{ $item->status }} @elseif($item->status == 'Inactive') {{ $item->status }} @endif
@endsection @include('admin.components.delete') @include('admin.components.toster') @include('admin.components.tosterjs')