Open wtfz opened 1 year ago
Hi. I have encoutered an issue with dot separated word/acronym. For example, @lang('F.A.Q') will generate a F.php file.
@lang('F.A.Q')
/* F.php */ <?php return [ 'A' => [ 'Q' => '', ], ];
Since Laravel use dot syntax to map the language files. How do I ignore this specific word from being outputted as a file?
Hi. I have encoutered an issue with dot separated word/acronym. For example,
@lang('F.A.Q')
will generate a F.php file.Since Laravel use dot syntax to map the language files. How do I ignore this specific word from being outputted as a file?