laravel 当你给予一个404找不到,即使我正在使用它路由资源.我不去任何页面

ergxz8rk  于 2023-03-04  发布在  其他
关注(0)|答案(1)|浏览(83)

当你给一个404 NOT FOUND,即使我正在使用它路由资源。我不去任何页面

Route::resource('/' , ClientController::class)
<tbody>
    @forelse($clients as $client)
        <tr>
            <th scope="row">{{$client->id}}</th>
            <td>{{$client->email}}</td>
            <td>{{$client->password}}</td>
            <td>{{$client->city}}</td>
            <td><a href="{{route('edit',$client->id)}}"  >Update</a></td>
        </tr>
        <tr>
    @empty
        <h1>pas de client</h1>
    @endforelse
</tbody>
public function edit($id)
{
    return $id;
}
kr98yfug

kr98yfug1#

你的回报需要去某个地方,尝试:

public function edit($id)
{
    return redirect()->back();
}

或:

public function edit($id)
{
    return redirect()->route('route.name');
}

相关问题