diskfloppy.me/resources/views/components/toh-quote.blade.php
floppydiskette 7d10ce0616 Merge me, Seymour! (#1)
Reviewed-on: https://git.frzn.dev///fwoppydwisk/diskfloppy.me/pulls/1
Co-authored-by: floppydiskette <git@diskfloppy.me>
Co-committed-by: floppydiskette <git@diskfloppy.me>
2024-08-08 14:25:01 +00:00

13 lines
390 B
PHP

<p class="quote">
@foreach($quote["lines"] as $line)
<strong>{{ $line["character"] }}:</strong>
{{-- Literally only one thing will trigger this lmao --}}
@if($line["line"] == "*Rage squeals*")
{{ $line["line"] }}
@else
"{{ $line["line"] }}"
@endif<br>
@endforeach
<small>({{ $quote["attribution"] }})</small>
</p>