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