mirror of
https://github.com/Einundzwanzig-Podcast/einundzwanzig-portal.git
synced 2025-12-13 06:56:48 +00:00
add landing pages for meetups
This commit is contained in:
36
resources/views/vendor/livewire-tables/components/table/th/bulk-actions.blade.php
vendored
Normal file
36
resources/views/vendor/livewire-tables/components/table/th/bulk-actions.blade.php
vendored
Normal file
@@ -0,0 +1,36 @@
|
||||
@aware(['component'])
|
||||
|
||||
@if ($component->bulkActionsAreEnabled() && $component->hasBulkActions())
|
||||
@php
|
||||
$theme = $component->getTheme();
|
||||
@endphp
|
||||
|
||||
@if ($theme === 'tailwind')
|
||||
<x-livewire-tables::table.th.plain>
|
||||
<div class="inline-flex rounded-md shadow-sm">
|
||||
<input
|
||||
wire:model="selectAll"
|
||||
type="checkbox"
|
||||
class="rounded border-gray-300 text-indigo-600 shadow-sm transition duration-150 ease-in-out focus:border-indigo-300 focus:ring focus:ring-indigo-200 focus:ring-opacity-50 dark:bg-gray-900 dark:text-white dark:border-gray-600 dark:hover:bg-gray-600 dark:focus:bg-gray-600"
|
||||
/>
|
||||
</div>
|
||||
</x-livewire-tables::table.th.plain>
|
||||
@elseif ($theme === 'bootstrap-4')
|
||||
<x-livewire-tables::table.th.plain>
|
||||
<input
|
||||
wire:model="selectAll"
|
||||
type="checkbox"
|
||||
/>
|
||||
</x-livewire-tables::table.th.plain>
|
||||
@elseif ($theme === 'bootstrap-5')
|
||||
<x-livewire-tables::table.th.plain>
|
||||
<div class="form-check">
|
||||
<input
|
||||
wire:model="selectAll"
|
||||
type="checkbox"
|
||||
class="form-check-input"
|
||||
/>
|
||||
</div>
|
||||
</x-livewire-tables::table.th.plain>
|
||||
@endif
|
||||
@endif
|
||||
11
resources/views/vendor/livewire-tables/components/table/th/plain.blade.php
vendored
Normal file
11
resources/views/vendor/livewire-tables/components/table/th/plain.blade.php
vendored
Normal file
@@ -0,0 +1,11 @@
|
||||
@aware(['component'])
|
||||
|
||||
@php
|
||||
$theme = $component->getTheme();
|
||||
@endphp
|
||||
|
||||
@if ($theme === 'tailwind')
|
||||
<th scope="col" {{ $attributes->merge(['class' => 'table-cell px-3 py-2 md:px-6 md:py-3 text-center md:text-left bg-gray-50 dark:bg-gray-800']) }}>{{ $slot }}</th>
|
||||
@elseif ($theme === 'bootstrap-4' || $theme === 'bootstrap-5')
|
||||
<th scope="col">{{ $slot }}</th>
|
||||
@endif
|
||||
5
resources/views/vendor/livewire-tables/components/table/th/reorder.blade.php
vendored
Normal file
5
resources/views/vendor/livewire-tables/components/table/th/reorder.blade.php
vendored
Normal file
@@ -0,0 +1,5 @@
|
||||
@aware(['component'])
|
||||
|
||||
@if ($this->currentlyReorderingIsEnabled())
|
||||
<x-livewire-tables::table.th.plain />
|
||||
@endif
|
||||
37
resources/views/vendor/livewire-tables/components/table/th/row-contents.blade.php
vendored
Normal file
37
resources/views/vendor/livewire-tables/components/table/th/row-contents.blade.php
vendored
Normal file
@@ -0,0 +1,37 @@
|
||||
@aware(['component'])
|
||||
|
||||
@if ($component->collapsingColumnsAreEnabled() && $component->hasCollapsedColumns())
|
||||
@php
|
||||
$theme = $component->getTheme();
|
||||
@endphp
|
||||
|
||||
@if ($theme === 'tailwind')
|
||||
<th
|
||||
scope="col"
|
||||
{{
|
||||
$attributes
|
||||
->merge(['class' => 'table-cell dark:bg-gray-800'])
|
||||
->class([
|
||||
'md:hidden' =>
|
||||
(($component->shouldCollapseOnMobile() && $component->shouldCollapseOnTablet()) ||
|
||||
($component->shouldCollapseOnTablet() && ! $component->shouldCollapseOnMobile()))
|
||||
])
|
||||
->class(['sm:hidden' => $component->shouldCollapseOnMobile() && ! $component->shouldCollapseOnTablet()])
|
||||
}}
|
||||
></th>
|
||||
@elseif ($theme === 'bootstrap-4' || $theme === 'bootstrap-5')
|
||||
<th
|
||||
scope="col"
|
||||
{{
|
||||
$attributes
|
||||
->merge(['class' => 'd-table-cell'])
|
||||
->class([
|
||||
'd-md-none' =>
|
||||
(($component->shouldCollapseOnMobile() && $component->shouldCollapseOnTablet()) ||
|
||||
($component->shouldCollapseOnTablet() && ! $component->shouldCollapseOnMobile()))
|
||||
])
|
||||
->class(['d-sm-none' => $component->shouldCollapseOnMobile() && ! $component->shouldCollapseOnTablet()])
|
||||
}}
|
||||
></th>
|
||||
@endif
|
||||
@endif
|
||||
Reference in New Issue
Block a user