laravel - 删除方法在 laravel 8 中不起作用
laravel - Delete method not working in laravel 8
您好,我还是laravel的初学者,我在删除方法上遇到了问题。
这是我的控制器
public function destroy($id)
{
$home = Home::find($id);
$home -> delete();
return back();
}
这是我的秃头
<div class="col-6 sampah">
<form action="{{ route('home.destroy', $home->id) }}" method="POST">
@csrf
@method('DELETE')
<a href="">
<i class="bi bi-trash3-fill" style="width: 10px; height:10px;"></i>
</a>
</form>
</div>
这是我的路线
Route::resource('home', 'App\Http\Controllers\TodosController')->middleware('auth');
当我按下删除按钮时,为什么它不起作用?问题出在哪里?请帮忙。
首先你需要得到你想要删除的东西这是给你的例子
它将是您的控制器:
///用您的模型替换 Crud////
public function destroy(Request $request,$id){
$data = Crud::findOrFail($id);
$data->delete();
return redirect('YOUR_HOME_PAGE')->with('success', 'User is successfully deleted');
}
这是你的 blade:
<td>
<form action="{{ route('home.destroy', $row->id) }}" method="post">
@csrf
@method('DELETE')
<button type="submit" class="btn btn-xs btn-danger btn-flat show_confirm" data-toggle="tooltip" title='Delete'>Delete</button>
</form>
</td>
</tr>
您好,我还是laravel的初学者,我在删除方法上遇到了问题。
这是我的控制器
public function destroy($id)
{
$home = Home::find($id);
$home -> delete();
return back();
}
这是我的秃头
<div class="col-6 sampah">
<form action="{{ route('home.destroy', $home->id) }}" method="POST">
@csrf
@method('DELETE')
<a href="">
<i class="bi bi-trash3-fill" style="width: 10px; height:10px;"></i>
</a>
</form>
</div>
这是我的路线
Route::resource('home', 'App\Http\Controllers\TodosController')->middleware('auth');
当我按下删除按钮时,为什么它不起作用?问题出在哪里?请帮忙。
首先你需要得到你想要删除的东西这是给你的例子 它将是您的控制器:
///用您的模型替换 Crud////
public function destroy(Request $request,$id){
$data = Crud::findOrFail($id);
$data->delete();
return redirect('YOUR_HOME_PAGE')->with('success', 'User is successfully deleted');
}
这是你的 blade:
<td>
<form action="{{ route('home.destroy', $row->id) }}" method="post">
@csrf
@method('DELETE')
<button type="submit" class="btn btn-xs btn-danger btn-flat show_confirm" data-toggle="tooltip" title='Delete'>Delete</button>
</form>
</td>
</tr>