blob: d9dfab13a52088cc06137aa6408f7144a9e45b51 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
<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>
|