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
14
14
public static function getBusinessNameFromVatID (string $ vatID ): string
15
15
{
16
16
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 ' );
18
18
} catch (\Exception ) {
19
- return trans ('laravel-rules::msg .vat-name-unknown ' );
19
+ return trans ('laravel-rules::messages .vat-name-unknown ' );
20
20
}
21
21
}
22
22
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ class BusinessNameFromVatID
8
8
{
9
9
public static function lookup (string $ vatID ): string
10
10
{
11
- $ unknown = trans ('laravel-rules::msg .vat-name-unknown ' );
11
+ $ unknown = trans ('laravel-rules::messages .vat-name-unknown ' );
12
12
13
13
if (! $ vatID ) {
14
14
return $ unknown ;
You can’t perform that action at this time.
0 commit comments