fix: adding ability to update artist bg
This commit is contained in:
@@ -77,9 +77,6 @@
|
||||
</ul>
|
||||
</li>
|
||||
@endif
|
||||
@if (auth()->user())
|
||||
<livewire:themeswitch />
|
||||
@else
|
||||
<li>
|
||||
<label class="theme-switcher-label d-flex" for="theme-switcher">
|
||||
<input type="checkbox" class="theme-switcher" id="theme-switcher">
|
||||
@@ -89,7 +86,6 @@
|
||||
</div>
|
||||
</label>
|
||||
</li>
|
||||
@endif
|
||||
<li class="setting-option mobile-menu-bar d-block d-xl-none">
|
||||
<button class="hamburger-button">
|
||||
<i class="ri-menu-2-fill"></i>
|
||||
@@ -121,7 +117,19 @@
|
||||
</div>
|
||||
</div>
|
||||
<nav>
|
||||
<ul class="mainmenu">
|
||||
@include('partials/nav/main')
|
||||
<li class="has-dropdown has-menu-child-item">
|
||||
<a {!! request()->is(['podcasts', 'podcasts/*']) ? 'class="active"' : '' !!}>Podcasts</a>
|
||||
<ul class="submenu">
|
||||
@foreach ($navPodcasts as $cast)
|
||||
<li>
|
||||
<a href="/podcasts/{{ $cast->slug }}">{{ $cast->name }}</a>
|
||||
</li>
|
||||
@endforeach
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</nav>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
<a {!! request()->is(['artworks', 'artworks/*']) ? 'class="active"' : '' !!} href="/artworks">Submitted</a>
|
||||
</li>
|
||||
<li>
|
||||
<a {!! request()->is(['artists', 'artists/*']) ? 'class="active"' : '' !!} href="/artists">Artists</a>
|
||||
<a {!! request()->is(['artists', 'artists/*', 'artist', 'artist/*', 'profile']) ? 'class="active"' : '' !!} href="/artists">Artists</a>
|
||||
</li>
|
||||
@if (auth()->user())
|
||||
<li>
|
||||
|
||||
Reference in New Issue
Block a user