Prepping for launch. Reviewed-on: #1 Co-authored-by: Paul Couture <paul@paulcouture.com> Co-committed-by: Paul Couture <paul@paulcouture.com>
		
			
				
	
	
		
			24 lines
		
	
	
		
			819 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			819 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| {{--  Start Live Auction --}}
 | |
| <section class="ptb-120 live-auction">
 | |
|     <div class="container">
 | |
|         <div class="section-title">
 | |
|             <span class="subtitle">Artworks</span>
 | |
|             <h2>Recent Artwork Submissons</h2>
 | |
|         </div>
 | |
|         {{-- End .section-title --}}
 | |
|         <div class="slider slick-activation-001 slick-gutter-15 slick-pagination-50">
 | |
|             @foreach ($recentSubmissions as $recent)
 | |
|                 @php
 | |
|                     $thisArtwork = $recent;
 | |
|                     $thisPodcast = $recent->podcast;
 | |
|                     $thisEpisode = $recent->episode;
 | |
|                 @endphp
 | |
|                 @include('artworks.card')
 | |
|             @endforeach
 | |
|         {{-- End .slick-activation-01 --}}
 | |
|         </div>
 | |
|     {{-- End .container --}}
 | |
|     </div>
 | |
| </section>
 | |
| {{-- End Live Auction --}}
 |