diff options
author | floppydiskette <git@diskfloppy.me> | 2024-08-08 15:21:30 +0100 |
---|---|---|
committer | floppydiskette <git@diskfloppy.me> | 2024-08-08 15:21:30 +0100 |
commit | 8650d88a794497543b1333f3e4ad5ea9bf753071 (patch) | |
tree | c2901bfbe124dcb9d16c4b9f2f3bed1e09f85815 /resources/views/components/toh-quote.blade.php | |
parent | c148b6237ae561efdc727efab7f7188b1afb9cd4 (diff) |
Finish that shit
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> |