fix: correcting issues on artist profile page.
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
@extends('layouts.master')
|
||||
|
||||
@section('page-title', 'Artists')
|
||||
@section('page-title', $artist->name)
|
||||
|
||||
@section('page-top')
|
||||
<section class="inner-page-banner bg-2 bg-image">
|
||||
@@ -33,19 +33,18 @@
|
||||
{{-- end bio sidebar --}}
|
||||
<div class="col-xxl-9 col-xl-8 col-lg-8">
|
||||
<div class="container">
|
||||
<div class="grid-filter-wrapper masonry-list">
|
||||
<div class="resizer"></div>
|
||||
@foreach ($artworks as $artwork)
|
||||
@php
|
||||
$thisArtwork = $artwork;
|
||||
$thisPodcast = $artwork->podcast;
|
||||
$thisEpisode = $artwork->episode;
|
||||
@endphp
|
||||
<div class="grid-item podcast--{{ $artwork->podcast->slug }}">
|
||||
@include('artworks.card')
|
||||
</div>
|
||||
@endforeach
|
||||
</div>
|
||||
<div class="row content-justify-center">
|
||||
@foreach ($artworks as $artwork)
|
||||
@php
|
||||
$thisArtwork = $artwork;
|
||||
$thisPodcast = $artwork->podcast;
|
||||
$thisEpisode = $artwork->episode;
|
||||
@endphp
|
||||
<div class="col-xxl-4 col-xl-6 col-lg-6 col-md-6 col-sm-12 col-xs-12 mb-5">
|
||||
@include('artworks.card')
|
||||
</div>
|
||||
@endforeach
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
{{-- end artist content --}}
|
||||
|
||||
Reference in New Issue
Block a user