@extends('layouts.adminapp')
@section('content')
{{-- Library Author --}}
Author Details
| Si No |
Name |
Place |
Date of Birth |
Nationality |
About |
Description |
Actions |
@php $si = 0; @endphp
@foreach ($Authors as $Author)
|
{{ ++$si }}
|
{{ $Author->name }}
|
{{ $Author->place }}
|
{{ $Author->dob }}
|
{{ $Author->nationality }}
|
{{ $Author->about }}
|
{{ $Author->description }}
|
|
@endforeach
@endsection