Created
June 6, 2020 08:02
-
-
Save JRSalasM/6072ef8c7b4e25eaa6d73c092cac8aef to your computer and use it in GitHub Desktop.
LARAVEL - TRANSACTION REGISTER
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public function store(Request $request) | |
{ | |
//Reglas de los datos | |
$rules=[]; | |
//Mensaje de error | |
$msj=[]; | |
//Validacion de los datos, reglas y mensajes | |
$this->validate($request,$rules,$msj); | |
//Variable de error | |
$error = null; | |
DB::beginTransaction(); | |
// | |
try | |
{ | |
//Inicio Query | |
$registro=new Model(); | |
$registro->name=$request->name; | |
$registro->save(); | |
//Fin Query | |
DB::commit(); | |
$success = true; | |
} | |
catch (\Exception $e) | |
{ | |
$success = false; | |
$error = $e->getMessage(); | |
DB::rollback(); | |
} | |
if (!$success) { | |
return back()->with('error','Ocurrio un error')->with('error',$error); | |
} | |
return back()->with('notification','Registrado'); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment