social credit

This commit is contained in:
Benjamin Takats
2022-12-07 00:21:07 +01:00
parent 3f9a53718c
commit d1fcde87e6
4 changed files with 13 additions and 2 deletions

View File

@@ -0,0 +1,11 @@
<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>