diff options
Diffstat (limited to 'resources/views/components/toh-quote.blade.php')
-rw-r--r-- | resources/views/components/toh-quote.blade.php | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/resources/views/components/toh-quote.blade.php b/resources/views/components/toh-quote.blade.php index 898b001..d9dfab1 100644 --- a/resources/views/components/toh-quote.blade.php +++ b/resources/views/components/toh-quote.blade.php @@ -1,6 +1,12 @@ <p class="quote"> @foreach($quote["lines"] as $line) - <strong>{{ $line["character"] }}:</strong> "{{ $line["line"] }}"<br> + <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> |