/** * Remove the specified anggota from storage. * * @param int $id * @return Response */ public function destroy($id) { Anggota::destroy($id); return Redirect::route('admin.anggotas.index'); }