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