Skip to content

Instantly share code, notes, and snippets.

@JRSalasM
Created June 6, 2020 08:02
Show Gist options
  • Save JRSalasM/6072ef8c7b4e25eaa6d73c092cac8aef to your computer and use it in GitHub Desktop.
Save JRSalasM/6072ef8c7b4e25eaa6d73c092cac8aef to your computer and use it in GitHub Desktop.
LARAVEL - TRANSACTION REGISTER
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