@extends('admin.layouts.app') @section('content')

Author List

Add New
@forelse ($authors as $key => $author) @empty @endforelse
# Image Name Email Phone Status Action
{{ $key + 1 }} @if($author->profile_image) Author Image @else N/A @endif {{ $author->name }} {{ $author->email ?? 'N/A' }} {{ $author->phone ?? 'N/A' }}
@csrf @method('PUT')
Edit
@csrf @method('DELETE')
No authors found.
@endsection