26 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <div class="col-xxl-4 col-lg-6 col-md-6 mb-6">
 | |
|     <div class="top-seller-style-two d-flex-between">
 | |
|         <div class="d-flex-center">
 | |
|             <div class="thumb-wrapper">
 | |
|                 <a href="author-profile.html" class="thumb">
 | |
|                     <img src="{{ Vite::asset($leaderboardArtist->artist->avatar ?? 'resources/img/default_avatars/default_avatar_male.svg') }}" alt="{{ $leaderboardArtist->artist->name }}"
 | |
|                         title="{{ $leaderboardArtist->artist->name }}">
 | |
|                 </a>
 | |
|             </div>
 | |
|             {{-- End .thumb-wrapper --}}
 | |
|             {{-- End .thumb --}}
 | |
|             <div class="content">
 | |
|                 <h4 class="title pb-1"><a href="author-profile.html">{{ $leaderboardArtist->artist->name }}</a></h4>
 | |
|                 <span class="price">Chosen {{ $leaderboardArtist->artworkCount }} {{ Str::plural('Time', $leaderboardArtist->artworkCount) }}</span>
 | |
|             </div>
 | |
|             {{-- End .content --}}
 | |
|         </div>
 | |
|         {{-- End .d-flex-center --}}
 | |
|         <a href="author-profile.html" class="items-number d-flex-center flex-column">
 | |
|             <strong class="pb-1">{{ $leaderboardArtist->position }}<sup>{{ numberSuffix($leaderboardArtist->position) }}</sup></strong>
 | |
|             <span>Place</span>
 | |
|         </a>
 | |
|     </div>
 | |
|     {{-- End .top-seller-style-two --}}
 | |
| </div>
 | |
| {{-- End .col --}} |