@extends('admin.layout.app')
@section('heading', 'Authors')
@section('button')
Add
@endsection
@section('main_content')
SL |
Photo |
Name |
Email |
Action |
@foreach($authors as $row)
{{ $loop->iteration }} |
@if($row->photo == NULL)
@else
@endif
|
{{ $row->name }} |
{{ $row->email }} |
Edit
Delete
|
@endforeach
@endsection