mirror of
https://github.com/Einundzwanzig-Podcast/einundzwanzig-portal.git
synced 2025-12-11 06:46:47 +00:00
12 lines
279 B
PHP
12 lines
279 B
PHP
<div>
|
|
@php
|
|
$a = (bool)rand(0, 1);
|
|
@endphp
|
|
@if($a)
|
|
<img class="h-12" src="{{ asset('img/social_credit_minus.webp') }}" alt="">
|
|
@endif
|
|
@if(!$a)
|
|
<img class="h-12" src="{{ asset('img/social_credit_plus.webp') }}" alt="">
|
|
@endif
|
|
</div>
|