Пример #1
0
 /**
  * Remove the specified resource from storage.
  *
  * @param  int  $id
  * @return \Illuminate\Http\Response
  */
 public function destroy($id)
 {
     if (textos::where('id_tipo', '=', $id)->first() != null) {
         Session::flash('message-error', 'No se puede eliminar el tipo de texto, existe un texto en el sistema que lo esta utilizando');
         return Redirect::to('/tipo/' . $id . '/edit');
     }
     tipo::destroy($id);
     Session::flash('message', 'Tipo de texto eliminado correctamente');
     return Redirect::to('/tipo');
 }