add languages

This commit is contained in:
Benjamin Takats
2022-12-18 21:15:23 +01:00
parent 31c9a66244
commit cf6afdcb43
489 changed files with 589 additions and 36883 deletions

View File

@@ -2,25 +2,25 @@
@if($row->courses_count > 0)
<x-button amber wire:click="lecturerSearch({{ $row->id }})">
<i class="fa fa-thin fa-calendar mr-2"></i>
Termine anzeigen ({{ $row->courses_count }})
{{ __('Show dates') }} ({{ $row->courses_count }})
</x-button>
@endif
@if($row->courses_count < 1)
<x-button outlined wire:click="lecturerSearch({{ $row->id }})">
<i class="fa fa-thin fa-calendar mr-2"></i>
Termine anzeigen ({{ $row->courses_count }})
{{ __('Show dates') }} ({{ $row->courses_count }})
</x-button>
@endif
@if($row->library_items_count > 0)
<x-button amber wire:click="lecturerSearch({{ $row->id }})">
<i class="fa fa-thin fa-book mr-2"></i>
Inhalte anzeigen ({{ $row->library_items_count }})
{{ __('Show content') }} ({{ $row->library_items_count }})
</x-button>
@endif
@if($row->library_items_count < 1)
<x-button outlined wire:click="lecturerSearch({{ $row->id }})">
<i class="fa fa-thin fa-book mr-2"></i>
Inhalte anzeigen ({{ $row->library_items_count }})
{{ __('Show content') }} ({{ $row->library_items_count }})
</x-button>
@endif
</div>