Files
Fleetbase-Mirror-Repo/api/app/Exceptions/Handler.php
2023-08-01 16:19:32 +08:00

20 lines
381 B
PHP

<?php
namespace App\Exceptions;
use Fleetbase\Exceptions\Handler as ExceptionHandler;
class Handler extends ExceptionHandler
{
/**
* A list of the inputs that are never flashed for validation exceptions.
*
* @var array<int, string>
*/
protected $dontFlash = [
'current_password',
'password',
'password_confirmation',
];
}