-
Notifications
You must be signed in to change notification settings - Fork 38
Closed
Labels
Description
I need to extend your a class in your entities folder called Locale.php for add parameter config.
How do I go about doing that?
Thanks :)
I would like have
<?php
return [
// ...
'locales' => [
// A
//====================================================>
'aa' => [
'name' => 'Afar',
'script' => 'Latn',
'dir' => 'ltr',
'native' => 'Qafar',
'datepicker' => 'af'
],
// ...
'zu' => [
'name' => 'Zulu',
'script' => 'Latn',
'dir' => 'ltr',
'native' => 'IsiZulu',
'datepicker' => 'zu'
],
],
];instead of
<?php
return [
// ...
'locales' => [
// A
//====================================================>
'aa' => [
'name' => 'Afar',
'script' => 'Latn',
'dir' => 'ltr',
'native' => 'Qafar',
],
// ...
'zu' => [
'name' => 'Zulu',
'script' => 'Latn',
'dir' => 'ltr',
'native' => 'IsiZulu',
],
],
];`Reactions are currently unavailable