@extends('adminlte::page') @section('title', 'Autores') @section('content_header')

Autores

Nova Autor
@stop @section('content') @if(Session::has('success')) @php $data = Session::get('success'); @endphp @if (is_array($data)) @foreach ($data as $msg) @endforeach @else @endif @endif @if(Session::has('error')) @php $data = Session::get('error'); @endphp @if (is_array($data)) @foreach ($data as $msg) @endforeach @else @endif @endif
@if(count($autores) == 0 ) @else @foreach($autores as $autor) @endforeach @endif
Código Nome Ação
Nenhum registro Nenhum registro Nenhum registro
{{$autor->codigo}} {{$autor->nome_autor}}
{{ $autores->onEachSide(4)->links() }}
@method('DELETE') @csrf
@stop @section('js') @stop