我想为表格中的每个值添加控件链接。我已经创建了资源控制器,现在想在我的视图中调用一些操作(更新,显示,删除)。 我是这样做的:
try/catch
并在我的路线网络文件中:
@foreach($teams as $team)
<tr>
<td>{{$team->name}}</td>
<td>{{$team->score}}</td>
<td>
<a class="btn btn-info" href="{{ route("teams.show/{$team}") }} ">Show</a>
<a class="btn btn-danger" href="{{ route("teams.destroy/{$team}") }}">Delete</a>
<a class="btn btn-info" href="{{ route("teams.edit/{$team}") }}">Update</a>
</td>
</tr>
@endforeach
但是现在我在尝试访问索引视图时遇到错误:
Route::resource('teams','TeamController');
答案 0 :(得分:0)
您的语法不正确。它应该是:
<a class="btn btn-info" href="{{route('teams.show', $team->id)}} ">Show</a>
<a class="btn btn-info" href="{{route('teams.edit', $team->id)}} ">Show</a>
摧毁路线不会使用href。