我收到这样的错误:
[Route: resumenes.show] [URI: resumenes/{resume}] 缺少必需的参数。(查看:.../resources/views/resumenes/index.blade.php)
控制器
public function index()
{
$resumenes = Resumene::orderBy('title','ASC')->paginate();
return view('resumenes.index', compact('resumenes') );
}
public function show(Resumene $resumen)
{
return view('resumenes.show', [
'resumen'=> $resumen
]);
}
路线
Route::get('/resumenes/{resumen}', 'ResumeneController@show')->name('resumenes.show');
INDEX.BLADE.PHP在这个视图中它向我显示错误
@extends('layout')
@section('title')
Mis Resumenes
@endsection
@section('content')
<h1>Mis Resumenes</h1>
@include('partials.sessions')
<a href="{{ route('resumenes.create') }}">Nuevo Resumen</a>
<ul>
@forelse($resumenes as $resumen)
<h2>{{ $resumen->title }}</h2>
**<li><a href="{{ route('resumenes.show', $resumen) }}" ><button>Ir</button></a>**
<br> Creado hace {{ $resumen->created_at->diffForHumans() }} </li>
<hr>
@empty
<li>No hay proyectos existentes</li>
@endforelse
{{ $resumenes->links() }}
</ul>
@endsection
错误应该在
<li><a href="{{ route('resumenes.show', $resumen) }}" ><button>Ir</button></a>
慕村9548890