Ejemplo n.º 1
0
 /**
  * Remove the specified emailtemplate from storage.
  *
  * @param  int  $id
  * @return Response
  */
 public function destroy($id)
 {
     Emailtemplate::destroy($id);
     return Redirect::route('admin.templates.index')->with('message', 'Data berhasil dihapus');
 }