2023-12-14 12:33:03 -05:00
< div class = " explore-style-one { { $thisEpisode->artwork_id == $thisArtwork->id ? 'selected' : '' }} " >
< div class = " thumb " >
2023-12-14 22:57:33 -05:00
< a href = " /artworks/ { { $thisArtwork->id }} "
data - bs - toggle = " tooltip "
data - bs - placement = " top "
title = " View This Album Art " >
2023-12-14 21:59:11 -05:00
< img src = " { { config('app.static_asset_url')
2023-12-14 12:33:03 -05:00
. '/thumbnails/'
. $thisArtwork -> filename ? ? '#' }} "
alt = " { { $thisArtwork->title }} by { { $thisArtwork->artist ->name }} " >
</ a >
</ div >
{{ -- End . thumb -- }}
< div class = " content " >
< div class = " header d-flex-between pt-4 pb-1 " >
< h3 class = " title " >
2023-12-14 21:59:11 -05:00
< a href = " /podcast/ { { $thisPodcast->slug }}/episode/ { { $thisEpisode->slug }} " > " { { $thisArtwork->title }} " </ a >
2023-12-14 12:33:03 -05:00
</ h3 >
< div class = " more-dropdown " >< i class = " ri-more-fill " data - bs - toggle = " dropdown " ></ i >
< ul class = " dropdown-menu dropdown-menu-dark " >
2023-12-14 21:59:11 -05:00
< li >< a class = " dropdown-item " href = " /podcasts/ { { $thisPodcast->slug }} " > View Podcast </ a ></ li >
< li >< a class = " dropdown-item " href = " /podcast/ { { $thisPodcast->slug }}/episode/ { { $thisEpisode->slug }} " > View Episode </ a ></ li >
2023-12-14 12:33:03 -05:00
< li >
< hr class = " dropdown-divider " >
</ li >
< li >< a class = " dropdown-item " href = " /artist/ { { $thisArtwork->artist ->id }} " > View Selected Artist </ a ></ li >
</ ul >
</ div >
</ div >
{{ -- . header -- }}
< div class = " product-owner py-1 d-flex-between " >
< span class = " bid-owner " > Artwork By < br >< strong >< a
href = " /artist/ { { $thisArtwork->artist ->slug }} " > {{ $thisArtwork -> artist -> name ? ? 'Unknown' }} </ a ></ strong ></ span >
< span class = " profile-share d-flex-center " >< a href = " /artist/ { { $thisArtwork->artist ->slug }} "
class = " avatar " data - bs - toggle = " tooltip "
data - bs - placement = " top "
title = " { { $thisArtwork->artist ->name }} " >
< img src = " { { Vite::asset( $thisArtwork->artist ->avatar ?? 'resources/img/default_avatars/default_avatar_male.svg') }} "
alt = " { { $thisArtwork->artist ->name }} " ></ a >
</ span >
</ div >
{{ -- End . product - owner -- }}
< div class = " action-wrapper py-1 d-flex-between " >
< span class = " bid-owner " >
@ if ( $thisArtwork -> id == $thisEpisode -> artwork_id )
Artwork Selected For
@ else
Artwork Submitted For
@ endif
< br >
2023-12-14 21:59:11 -05:00
< strong >< a href = " /podcasts/ { { $thisPodcast->slug }} " > {{ $thisPodcast -> name }} </ a ></ strong >
2023-12-14 12:33:03 -05:00
< br >
2023-12-14 21:59:11 -05:00
< a href = " /podcast/ { { $thisPodcast->slug }}/episode/ { { $thisEpisode->slug }} " > Episode {{ number_format ( $thisEpisode -> episode_number + 0 ) }} < br >< em >
2023-12-14 12:33:03 -05:00
{{ $thisEpisode -> episode_date -> format ( 'D, M j' ) }} < sup > {{ $thisEpisode -> episode_date -> format ( 'S' ) }} </ sup > {{ $thisEpisode -> episode_date -> format ( ', Y' ) }} </ em ></ a >
</ span >
</ div >
{{ -- action - wrapper -- }}
</ div >
{{ -- End . content -- }}
</ div >