@extends('admin.admin_dashboard') @section('admin')

{{-- --}}
@foreach($authors as $key => $author) @endforeach
Sl Author Name Author Image Action
{{ $key+1 }} {{ $author->author_name }} @if (Auth::user()->can('author.edit')) Edit @endif @if (Auth::user()->can('author.delete')) Delete @endif
Sl Author Name Author Image Action
@endsection