diskfloppy.me/resources/views/components/toh-quote.blade.php

13 lines
390 B
PHP
Raw Normal View History

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