File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -14,9 +14,9 @@ class RuleHelpers
1414 public static function getBusinessNameFromVatID (string $ vatID ): string
1515 {
1616 try {
17- return VatCalculator::getVATDetails ($ vatID )?->name ?? trans ('laravel-rules::msg .vat-name-unknown ' );
17+ return VatCalculator::getVATDetails ($ vatID )?->name ?? trans ('laravel-rules::messages .vat-name-unknown ' );
1818 } catch (\Exception ) {
19- return trans ('laravel-rules::msg .vat-name-unknown ' );
19+ return trans ('laravel-rules::messages .vat-name-unknown ' );
2020 }
2121 }
2222
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ class BusinessNameFromVatID
88{
99 public static function lookup (string $ vatID ): string
1010 {
11- $ unknown = trans ('laravel-rules::msg .vat-name-unknown ' );
11+ $ unknown = trans ('laravel-rules::messages .vat-name-unknown ' );
1212
1313 if (! $ vatID ) {
1414 return $ unknown ;
You can’t perform that action at this time.
0 commit comments