/** * Remove the specified resource from storage. * * @param int $id * @return \Illuminate\Http\Response */ public function destroy($id) { $pengawas = Pengawas::find($id); $pengawas->delete(); Session::flash('pesan', "Data Berhasil dihapus"); return Redirect::back(); }
public function getPengawas() { $pengawas = Pengawas::find($this->getNip()); return $pengawas; }