Files
einundzwanzig-portal/resources/views/columns/book_cases/oranged-pilled.blade.php
Benjamin Takats 0dd8ec4037 routes changed
2022-12-15 20:15:56 +01:00

22 lines
1022 B
PHP

<div class="flex flex-col space-y-1">
@auth
@if($row->orange_pills_count > 0)
<img class="aspect-auto max-h-12" src="{{ asset('img/social_credit_plus.webp') }}" alt="">
@endif
@if($row->orange_pills_count < 1)
<img class="aspect-auto max-h-12" src="{{ asset('img/social_credit_minus.webp') }}" alt="">
@endif
<div class="flex items-center space-x-1">
<x-button class="whitespace-nowrap" primary class="text-21gray whitespace-nowrap" wire:click="viewHistoryModal({{ $row->id }})">💊 Orange Pill Now</x-button>
<x-button class="whitespace-nowrap" :href="route('bookCases.comment.bookcase', ['bookCase' => $row->id, 'country' => $country])">Details</x-button>
</div>
@else
<div>
<x-badge class="whitespace-nowrap" amber>
<i class="fa fa-thin fa-shelves-empty mr-2"></i>
{{ __('noch keine Bitcoin-Bücher') }}
</x-badge>
</div>
@endauth
</div>