Skip to content

Commit 18a921b

Browse files
authored
Update translations.blade.php use qualified class name \Illuminate\Support\Arr (#7)
Use the qualified class name as the alias is not available.
1 parent d62d654 commit 18a921b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

resources/views/forms/components/translations.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
$hasActions = filled($actions);
1414
1515
$childComponentsWithLocale = collect($getChildComponentContainers())->map(fn ($container) => $container->getComponents());
16-
$tabs = collect($childComponentsWithLocale)->map(fn ($components) => Arr::first($components, fn ($component) => $component instanceof Tab));
16+
$tabs = collect($childComponentsWithLocale)->map(fn ($components) => \Illuminate\Support\Arr::first($components, fn ($component) => $component instanceof Tab));
1717
1818
$tabCount = $tabs->count();
1919
@endphp

0 commit comments

Comments
 (0)