We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5c3511c commit e18dcf7Copy full SHA for e18dcf7
config/filament-types.php
@@ -36,11 +36,10 @@
36
* Locals
37
*
38
* If you need to use locals for the types you can set it here
39
- *
+ *
40
* EG: ['en','ar'] will provide English and Arabic options.
41
42
* Default: NULL, provides English and Arabic options.
43
*/
44
-
45
- 'locals' => NULL,
+ 'locals' => null,
46
];
src/FilamentTypesPlugin.php
@@ -18,7 +18,7 @@ class FilamentTypesPlugin implements Plugin
18
19
public function locals()
20
{
21
- return (!is_null(config('filament-types.locals'))) ? config('filament-types.locals') : $this->locals;
+ return (! is_null(config('filament-types.locals'))) ? config('filament-types.locals') : $this->locals;
22
}
23
24
public function getLocals(): array
0 commit comments