51 lines
2.0 KiB
PHP
51 lines
2.0 KiB
PHP
<!-- Sidebar -->
|
|
<nav class="yt-sidebar" id="sidebar">
|
|
<div class="yt-sidebar-section">
|
|
<a href="{{ route('home') }}" class="yt-sidebar-link {{ request()->is('/') || request()->is('videos') ? 'active' : '' }}">
|
|
<i class="bi bi-house-door-fill"></i>
|
|
<span>Home</span>
|
|
</a>
|
|
<a href="{{ route('videos.shorts') }}" class="yt-sidebar-link {{ request()->is('shorts') ? 'active' : '' }}">
|
|
<i class="bi bi-play-btn"></i>
|
|
<span>Shorts</span>
|
|
</a>
|
|
<a href="{{ route('videos.trending') }}" class="yt-sidebar-link {{ request()->is('trending') ? 'active' : '' }}">
|
|
<i class="bi bi-fire"></i>
|
|
<span>Trending</span>
|
|
</a>
|
|
@auth
|
|
<a href="#" class="yt-sidebar-link">
|
|
<i class="bi bi-collection-play"></i>
|
|
<span>Subscriptions</span>
|
|
</a>
|
|
@endauth
|
|
</div>
|
|
|
|
@auth
|
|
<div class="yt-sidebar-section">
|
|
<a href="{{ route('channel', Auth::user()->id) }}" class="yt-sidebar-link">
|
|
<i class="bi bi-person-video"></i>
|
|
<span>Your Channel</span>
|
|
</a>
|
|
<a href="{{ route('playlists.index') }}" class="yt-sidebar-link {{ request()->is('playlists*') ? 'active' : '' }}">
|
|
<i class="bi bi-collection-play"></i>
|
|
<span>Playlists</span>
|
|
</a>
|
|
<a href="{{ route('history') }}" class="yt-sidebar-link">
|
|
<i class="bi bi-clock-history"></i>
|
|
<span>History</span>
|
|
</a>
|
|
<a href="{{ route('liked') }}" class="yt-sidebar-link">
|
|
<i class="bi bi-hand-thumbs-up"></i>
|
|
<span>Liked Videos</span>
|
|
</a>
|
|
@if(Auth::user()->isSuperAdmin())
|
|
<a href="{{ route('admin.dashboard') }}" class="yt-sidebar-link {{ request()->is('admin*') ? 'active' : '' }}">
|
|
<i class="bi bi-speedometer2"></i>
|
|
<span>Admin Panel</span>
|
|
</a>
|
|
@endif
|
|
</div>
|
|
@endauth
|
|
</nav>
|