@extends('layouts.master') @section('notifications') @if(session('success'))
{{ session('success') }}
@endif @if(session('delete'))
{{ session('delete') }}
@endif @if(session('update'))
{{ session('update') }}
@endif @if(session('error'))
{{ session('error') }}
@endif @endsection @section('content')
Insertar prestamo
@foreach($loans as $loan) @endforeach
Nombre Apellidos Titulo Autor Editorial Fecha_Prestamo
{{ /*$loan->user->name -> solo cuando llamamos al modelo pivote*/ $loan->name }} {{ $loan->surname }} {{ $loan->title }} {{ $loan->author }} {{ $loan->editorial }} {{ $loan->loan_date }} Ver Actualizar Borrar
{{$loans->links()}} @endsection