Ejemplo n.º 1
0
 /**
  * Remove the specified jabatan from storage.
  *
  * @param  int  $id
  * @return Response
  */
 public function destroy($id)
 {
     Jabatan::destroy($id);
     return Redirect::route('admin.jabatan.index')->withTitle('successMessage', 'Jabatan berhasil dihapus.');
 }