Michal Sniatala
Michal Sniatala
Thank you @samsonasik ans @paulbalandan
Dedicated column sounds reasonable. I wouldn't limit this functionality to tokens only. This may be useful to any channel of authentication.
Custom Validation Rule Error: {field}, {param} , {value} Placeholders Not Replaced in Error Messages
Just use language translations: ```php // app/Language/en/Validation.php return [ 'example' => 'The {field} field name is here.' ]; ``` ```php // app/Validation/ExtraRules.php public function example($str) { if (empty($str)) { return...
I'm having problems reproducing the error. 1. Have you made any changes to the default session settings? 2. What session handler are you using? 3. Are you able to reproduce...
Are we actually calling an `attempt` method multiple times per request?
Sorry, your reason for this change was described as: > my main goal in this configuration was to prevent the repeated use of config('AuthToken') and config('AuthJWT') So my question is....
Ok, sorry - that was my mistake. I thought we call this config only in one method. But now I see we call it several times.
Please let me know if your custom queue config is properly namespaced and autoloaded. Can you make `dd(config('Datamweb\DadAfza\Config\Queue'))` to verify that?
Hmm... I cannot reproduce the problem. Do you have multiple config files or just one?
Can you investigate what is happening in the services file by adding `d()` and `dd()`? ```php // vendor/codeigniter4/queue/src/Config/Services.php class Services extends BaseService { public static function queue(?QueueConfig $config = null,...