aboutsummaryrefslogtreecommitdiff
path: root/resources/views/components/wah.blade.php
blob: 8b51e5230d1decb349adff2f962418e4fc4406e2 (plain)
1
2
3
4
5
6
7
8
9
10
<div class="wah">
    <h3>Random Wah!</h3>
    @if ($wah !== "")
        <img src="{{ $wah }}" alt="Random image featuring a red panda">
        <p>Image "stolen" from <a href="https://tinyfox.dev/">tinyfox.dev</a></p>
    @else
        <img src="https://placehold.co/250x250" alt="250x250 Placeholder Image">
        <p>Unable to retrieve image</p>
    @endif
</div>