/** * Remove the specified resource from storage. * * @param int $id * @return Response */ public function destroy($id) { if (Auth::check() && $this->rolechucnangs && $this->rolechucnangs->Xoa == 1) { $danhmucdoi = Danhmucdoi::findOrFail($id); $danhmucdoi->delete(); return \Redirect::route('danhmucdoi.index')->with('message', 'Xóa thành công!'); } else { return \Redirect::route('danhmucdoi.index')->with('message-error', 'Không có quyền truy cập'); } }