@extends('layouts.app')
@section('content')
REPORTE DE autor
@if (Session::get('success'))
{{ Session::get('success') }}
@endif
| Id |
Nombre del autor |
Apellido del autor |
Acciones |
@foreach ($autor as $aut)
| {{ $aut->id }} |
{{ $aut->nombre }} |
{{ $aut->apellido }} |
|
@endforeach
@endsection