mirror of
https://github.com/Einundzwanzig-Podcast/einundzwanzig-portal.git
synced 2025-12-11 06:46:47 +00:00
19 lines
692 B
PHP
19 lines
692 B
PHP
<div class="flex flex-col space-y-1">
|
|
@if($type === 'school')
|
|
<div>
|
|
<x-button amber wire:click="proximitySearch({{ $row->id }})" class="text-21gray">
|
|
<i class="fa fa-thin fa-person-chalkboard mr-2"></i>
|
|
Umkreis-Suche Kurs-Termin {{ $row->name }} (100km)
|
|
</x-button>
|
|
</div>
|
|
@endif
|
|
@if($type === 'bookCase')
|
|
<div>
|
|
<x-button amber wire:click="proximitySearchForBookCases({{ $row->id }})" class="text-21gray">
|
|
<i class="fa fa-thin fa-book mr-2"></i>
|
|
Umkreis-Suche Bücher-Schrank {{ $row->name }} (5km)
|
|
</x-button>
|
|
</div>
|
|
@endif
|
|
</div>
|