ifox
10/17/2022, 3:38 PMJeanSilva
10/18/2022, 12:11 PM'passwords' => [
'users' => [
'provider' => 'users',
'table' => 'password_resets',
// 'expire' => 60,
// 'expire' => 1,
'expire' => 43200,
'throttle' => 60,
],
],
Is there some other config I must do? I've also tried running php artisan config:cache
.jefsev
10/18/2022, 12:19 PMHarings Rob
10/18/2022, 12:20 PMjefsev
10/18/2022, 12:21 PMjefsev
10/18/2022, 12:21 PMHarings Rob
10/18/2022, 12:22 PMHarings Rob
10/18/2022, 12:24 PMjefsev
10/18/2022, 12:24 PMHarings Rob
10/18/2022, 12:24 PMjefsev
10/18/2022, 12:25 PMifox
10/18/2022, 12:33 PMkalle
10/18/2022, 12:39 PMphp
'passwords' => [
'twill_users' => [
'provider' => 'twill_users',
'table' => config('twill.password_resets_table', 'twill_password_resets'),
'expire' => 60,
'throttle' => 60,
],
],
So if this key is present, Twill will not publish own default config value.
https://github.com/area17/twill/blob/293a06d521c45ff833246fda41ca7885a0a41983/src/TwillServiceProvider.php#L194
Your current changes affect only your Laravel application, nothing related to Twill is changed.JeanSilva
10/18/2022, 12:56 PMdevtutorum
10/18/2022, 3:05 PMifox
10/18/2022, 3:08 PMifox
10/18/2022, 3:08 PMdevtutorum
10/18/2022, 3:09 PMifox
10/18/2022, 3:10 PMtwill.media_library.original_media_for_extension
BA7YA
10/18/2022, 3:26 PMifox
10/18/2022, 3:27 PMBA7YA
10/18/2022, 5:19 PMuwascan
10/18/2022, 7:08 PMDivision by zero (View: D:\PROJECTS\PHP\test\resources\views\admin\pages\form.blade.php)
uwascan
10/18/2022, 7:11 PMifox
10/18/2022, 7:24 PMifox
10/18/2022, 7:32 PMuwascan
10/18/2022, 8:13 PM@formField('checkbox', [
'name' => 'vertical_article',
'label' => 'Vertical Story'
])
@formConnectedFields([
'fieldName' => 'vertical_article',
'fieldValues' => true,
'renderForBlocks' => true/false # (depending on regular form vs block form)
])
@formField('medias', [
'name' => 'vertical_image',
'label' => 'Vertical Image',
])
@endformConnectedFields
ifox
10/18/2022, 8:18 PMifox
10/18/2022, 8:19 PMuwascan
10/18/2022, 8:21 PM