如何在laravel中删除数据
我的链接
<a href="destroy/<?php echo $values->sln; ?>" >Delete</a>`
路线
Route::get('/destroy/{$id}','CrudCtl@destroy');
我的控制器
public function destroy($id)
{
DB::table('info')->where('sln',$id)->delete();
return redirect('/');
}
答案 0 :(得分:0)
如果您使用Eloquent,则可以通过
删除模型 $info = Info::findOrFail($id);
$info->delete();
并且可以删除现有的按键模型
App\Info::destroy($id);
如果你想通过查询删除模型 使用这个
App\Info::where('id', 0)->delete();