From 9766a1afadbe33253cd489721b2059b1ed62ed50 Mon Sep 17 00:00:00 2001 From: vasya Date: Sun, 22 Mar 2026 19:53:13 +0300 Subject: [PATCH] =?UTF-8?q?INITIAL=20COMMIT=20-=20=D0=B2=20=D1=8D=D1=82?= =?UTF-8?q?=D1=83=20=D0=B2=D0=B5=D1=82=D0=BA=D1=83=20=D1=81=D0=BA=D0=BB?= =?UTF-8?q?=D0=B0=D0=B4=D1=8B=D0=B2=D0=B0=D1=8E=20=D1=81=D0=BA=D1=80=D0=B8?= =?UTF-8?q?=D0=BF=D1=82=D1=8B,=20=D0=BD=D0=B5=D0=BE=D0=B1=D1=85=D0=BE?= =?UTF-8?q?=D0=B4=D0=B8=D0=BC=D0=BE=D1=81=D1=82=D1=8C=20=D0=BA=D0=BE=D1=82?= =?UTF-8?q?=D0=BE=D1=80=D1=8B=D1=85=20=D1=81=D0=BE=D0=BC=D0=BD=D0=B8=D1=82?= =?UTF-8?q?=D0=B5=D0=BB=D1=8C=D0=BD=D0=B0=20=D0=B4=D0=BB=D1=8F=20=D0=BD?= =?UTF-8?q?=D0=BE=D0=B2=D0=BE=D0=B3=D0=BE=20=D0=BF=D1=80=D0=BE=D0=B5=D0=BA?= =?UTF-8?q?=D1=82=D0=B0=20=D0=BB=D0=B0=D1=80=D0=B0=D0=B2=D0=B5=D0=BB=D1=8C?= =?UTF-8?q?.=20=D0=9C=D0=BE=D0=B6=D0=BD=D0=BE=20=D0=B4=D0=BE=D0=B1=D0=B0?= =?UTF-8?q?=D0=B2=D0=B8=D1=82=D1=8C=20=D0=B8=D1=85=20=D1=81=D0=BA=D0=BE?= =?UTF-8?q?=D0=BF=D0=BE=D0=BC=20=D0=B2=20=D0=BD=D0=BE=D0=B2=D1=8B=D0=B9=20?= =?UTF-8?q?=D0=BF=D1=80=D0=BE=D0=B5=D0=BA=D1=82,=20=D0=BF=D0=BE=D1=82?= =?UTF-8?q?=D0=BE=D0=BC=20=D0=BF=D0=BE=D0=BF=D1=80=D0=BE=D0=B1=D0=BE=D0=B2?= =?UTF-8?q?=D0=B0=D1=82=D1=8C=20=D1=83=D0=B4=D0=B0=D0=BB=D1=8F=D1=82=D1=8C?= =?UTF-8?q?=20=D0=B8=20=D1=81=D0=BC=D0=BE=D1=82=D1=80=D0=B5=D1=82=D1=8C=20?= =?UTF-8?q?=D0=B1=D1=83=D0=B4=D0=B5=D1=82=20=D1=87=D1=82=D0=BE-=D1=82?= =?UTF-8?q?=D0=BE=20=D0=BB=D0=BE=D0=BC=D0=B0=D1=82=D1=8C=D1=81=D1=8F=20?= =?UTF-8?q?=D0=B8=D0=BB=D0=B8=20=D0=BD=D0=B5=D1=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/Exceptions/Handler.php | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 app/Exceptions/Handler.php diff --git a/app/Exceptions/Handler.php b/app/Exceptions/Handler.php new file mode 100644 index 0000000..56af264 --- /dev/null +++ b/app/Exceptions/Handler.php @@ -0,0 +1,30 @@ + + */ + protected $dontFlash = [ + 'current_password', + 'password', + 'password_confirmation', + ]; + + /** + * Register the exception handling callbacks for the application. + */ + public function register(): void + { + $this->reportable(function (Throwable $e) { + // + }); + } +}