Skip to content

Commit dc22faa

Browse files
committed
wip
1 parent d1c0af0 commit dc22faa

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

resources/views/layouts/_partials/_footer.blade.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<div class="flex flex-col gap-8">
33

44
<div class="hidden md:flex flex-col items-start gap-4 md:gap-18 md:flex-row md:items-start md:justify-start mx-auto md:mx-0">
5-
@if($configuration->section_services)
5+
@if($configuration?->section_services)
66
<div>
77
<h2 class="text-black font-semibold">{{ __('Services') }}</h2>
88
<ul class="mt-1 list-none text-base">
@@ -19,7 +19,7 @@ classAttributes="text-lg"/>
1919
</div>
2020
@endif
2121

22-
@if($configuration->section_products)
22+
@if($configuration?->section_products)
2323
<div>
2424
<h2 class="text-black font-semibold">{{ __('Products') }}</h2>
2525
<ul class="mt-1 list-none text-base">
@@ -81,7 +81,7 @@ classAttributes="text-lg"/>
8181

8282
@if(filled($configuration?->footer))
8383
<div class="text-base text-gray-500 text-center md:text-left">
84-
<span title="{{ app()->getLocale() }}"{{ date('Y') }} {{ $configuration->footer }}</span>
84+
<span title="{{ app()->getLocale() }}"{{ date('Y') }} {{ $configuration?->footer }}</span>
8585
</div>
8686
@endif
8787
</div>

resources/views/layouts/_partials/_navigation_desktop.blade.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,25 +13,25 @@ classAttributes="text-xl md:text-2xl"/>
1313

1414
<span class="text-gray-500">|</span>
1515

16-
@if($configuration->section_services)
16+
@if($configuration?->section_services)
1717
<x-a :href="localized_route('services.index')" label="{{ __('Services') }}"
1818
classAttributes="text-xl md:text-2xl"/>
1919
<span class="text-gray-500">|</span>
2020
@endif
2121

22-
@if($configuration->section_products)
22+
@if($configuration?->section_products)
2323
<x-a :href="localized_route('products.index')" label="{{ __('Products') }}"
2424
classAttributes="text-xl md:text-2xl"/>
2525
<span class="text-gray-500">|</span>
2626
@endif
2727

28-
@if($configuration->section_technologies)
28+
@if($configuration?->section_technologies)
2929
<x-a :href="localized_route('technologies.index')" label="{{ __('Technologies') }}"
3030
classAttributes="text-xl md:text-2xl"/>
3131
<span class="text-gray-500">|</span>
3232
@endif
3333

34-
@if($configuration->section_open_source)
34+
@if($configuration?->section_open_source)
3535
<x-a :href="localized_route('open-source.index')" label="{{ __('Open Source') }}"
3636
classAttributes="text-xl md:text-2xl"/>
3737
<span class="text-gray-500">|</span>

resources/views/layouts/_partials/_navigation_mobile.blade.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ class="block py-3 text-center bg-gray-50 hover:text-black hover:font-semibold tr
1818
{{ __('About us') }}
1919
</a>
2020

21-
@if($configuration->section_services)
21+
@if($configuration?->section_services)
2222
<div @click.stop class="py-3 text-center bg-gray-50/50 transition">
2323
<a @click.stop
2424
href="{{ localized_route('services.index') }}"
@@ -42,7 +42,7 @@ class="block text-base hover:text-black hover:font-semibold transition">
4242
</div>
4343
@endif
4444

45-
@if($configuration->section_products)
45+
@if($configuration?->section_products)
4646
<div @click.stop class="py-3 text-center bg-gray-50 transition">
4747
<a @click.stop
4848
href="{{ localized_route('products.index') }}"

0 commit comments

Comments
 (0)