fix: initial changes to allow for intial deployment (#4)

Reviewed-on: #4
Co-authored-by: Paul Couture <paul@paulcouture.com>
Co-committed-by: Paul Couture <paul@paulcouture.com>
This commit was merged in pull request #4.
This commit is contained in:
2023-12-14 20:59:11 -06:00
committed by Paul Couture
parent 26c4b2c959
commit 2e3b848ff5
11 changed files with 107 additions and 78 deletions

View File

@@ -7,7 +7,7 @@
alt="{{ $artist->name }}" /></a>
<h4 class="title"><a href="/artists/{{ $artist->slug }}">{{ $artist->name }}</a></h4>
<p class="title">{{ $artist->location ?? 'No Agenda Nation' }}</p>
<p class="title">Artist for {{ $artist->created_at->diffForHumans() }}</p>
<p class="title">Artist For {{ $artist->artworks->sortBy('created_at')->first()->created_at->diffForHumans(now(), Carbon\CarbonInterface::DIFF_ABSOLUTE) }}</p>
@if ($artist->bio)
<h4>Bio:</h4>
<p>{{ nl2br($artist->bio) }}</p>