Skip to content

Commit 9d3e00b

Browse files
authored
Merge pull request #13 from codebar-ag/main
main/production
2 parents 747a4c7 + 45c7ddb commit 9d3e00b

File tree

7 files changed

+10
-7
lines changed

7 files changed

+10
-7
lines changed

app/Http/Controllers/Services/ServicesShowController.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ public function __invoke(string $locale, Service $service): View
2020
'name' => $service->name,
2121
'teaser' => $service->teaser,
2222
'content' => Str::of($service->content)->markdown(),
23+
'tags' => $service->tags,
2324
]);
2425
}
2526
}

lang/de_CH/components.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
effizienter macht.',
1111
'buttons' => [
1212
'discover_now' => 'Jetzt entdecken',
13-
'more' => 'Mehr über DocuWare,',
13+
'more' => 'Mehr über DocuWare',
1414
],
1515
],
1616
],

resources/views/app/contact/index.blade.php

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,9 @@ classAttributes="block"/>
2020
<p>Haupstrasse 91</p>
2121
<p>CH-4455 Zunzgen</p>
2222
</address>
23-
<x-a-badge href="https://www.google.com/maps/place/Hauptstrasse+91,+4455+Zunzgen,+Schweiz"
24-
label="{{ __('Google Maps') }}" class-attributes="mt-1" target="_blank" rel="noopener noreferrer">
23+
<x-a-badge href="https://www.google.com/maps/place/Hauptstrasse+91,+4455+Zunzgen,+Schweiz" label="{{ __('Google Maps') }}" class-attributes="mt-1" target="_blank" rel="noopener noreferrer">
2524
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5"
26-
stroke="currentColor" class="mr-1 size-3">
25+
stroke="currentColor" class="ml-1 size-3">
2726
<path stroke-linecap="round" stroke-linejoin="round"
2827
d="M13.5 6H5.25A2.25 2.25 0 0 0 3 8.25v10.5A2.25 2.25 0 0 0 5.25 21h10.5A2.25 2.25 0 0 0 18 18.75V10.5m-10.5 6L21 3m0 0h-5.25M21 3v5.25"/>
2928
</svg>

resources/views/app/legal/imprint/index.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
<x-a-badge href="https://zefix.ch/de/search/entity/list/firm/1598166" label="{{ __('Zefix') }}"
1515
class-attributes="mt-1" target="_blank" rel="noopener noreferrer">
1616
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5"
17-
stroke="currentColor" class="mr-1 size-3">
17+
stroke="currentColor" class="ml-1 size-3">
1818
<path stroke-linecap="round" stroke-linejoin="round"
1919
d="M13.5 6H5.25A2.25 2.25 0 0 0 3 8.25v10.5A2.25 2.25 0 0 0 5.25 21h10.5A2.25 2.25 0 0 0 18 18.75V10.5m-10.5 6L21 3m0 0h-5.25M21 3v5.25"/>
2020
</svg>

resources/views/app/products/show.blade.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,4 @@
1111
<x-docuware-showme/>
1212
@endif
1313

14-
1514
</x-app-layout>

resources/views/app/services/show.blade.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,8 @@
77
<x-content :content="$content"/>
88
</x-section>
99

10+
@if(in_array('DocuWare', $tags))
11+
<x-docuware-showme/>
12+
@endif
13+
1014
</x-app-layout>

resources/views/components/a-badge.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22

33
<a target="{{ $target }}" href="{{ $href }}" title="{{ $title ?? $label }}"
44
class="{{ $classAttributes }} inline-flex items-center rounded-md bg-gray-400/10 px-2 py-1 text-sm font-medium text-gray-400 hover:bg-gray-400/20 hover:text-black hover:font-semibold ring-1 ring-gray-400/20 ring-inset cursor-pointer">
5-
{{ $slot }}
65
{{ $label }}
6+
{{ $slot }}
77
</a>

0 commit comments

Comments
 (0)