Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created June 20, 2019 17:41
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save parzibyte/c7f56c92bd2f853031481af643cc2fa2 to your computer and use it in GitHub Desktop.
<?php
namespace App\Http\Controllers;
use App\Area;
use App\Http\Requests\GuardarArea;
class AreasController extends Controller
{
//
public function agregar(GuardarArea $peticion)
{
$area = new Area;
$area->nombre = $peticion->nombre;
$exitoso = $area->save();
$mensaje = "Área agregada correctamente";
$tipo = "success";
if ($exitoso) {
$mensaje = "Error agregando área. Intente más tarde";
$tipo = "danger";
}
return redirect()->route("formularioArea")
->with("mensaje", $mensaje)
->with("tipo", $tipo);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment