Версия 0.5.0 #8

Merged
kor-elf merged 9 commits from develop into main 2025-08-23 03:37:43 +05:00
3 changed files with 12 additions and 2 deletions
Showing only changes of commit 3d4bef0e56 - Show all commits

View File

@@ -4,6 +4,7 @@ use Illuminate\Foundation\Application;
use Illuminate\Foundation\Configuration\Exceptions;
use Illuminate\Foundation\Configuration\Middleware;
use Illuminate\Support\Facades\Route;
use Symfony\Component\HttpFoundation\Response;
return Application::configure(basePath: dirname(__DIR__))
->withRouting(
@@ -19,8 +20,15 @@ return Application::configure(basePath: dirname(__DIR__))
},
)
->withMiddleware(function (Middleware $middleware) {
//
})
->withExceptions(function (Exceptions $exceptions) {
//
$exceptions->respond(function (Response $response) {
if ($response->getStatusCode() === 419) {
return back()
->withInput()
->withErrors(['csrf' => __('http-statuses.csrfError')]);
}
return $response;
});
})->create();

View File

@@ -81,4 +81,5 @@ return [
'598' => 'Network Read Timeout Error',
'599' => 'Network Connect Timeout Error',
'unknownError' => 'Unknown Error',
'csrfError' => 'It looks like your session has expired. Please try again.',
];

View File

@@ -81,4 +81,5 @@ return [
'598' => 'Истекло время ожидания',
'599' => 'Истекло время подключения',
'unknownError' => 'Неизвестная ошибка',
'csrfError' => 'Похоже, что срок действия Вашей сессии истек. Пожалуйста, попробуйте еще раз.',
];