2025-07-05 01:17:24 +02:00
|
|
|
<div class="bg-gray-800 text-white w-64 flex-shrink-0">
|
|
|
|
|
<div class="p-4">
|
|
|
|
|
<h2 class="text-xl font-bold">Lemmy Poster</h2>
|
|
|
|
|
<p class="text-gray-400 text-sm">Admin Panel</p>
|
|
|
|
|
</div>
|
2025-07-05 02:19:59 +02:00
|
|
|
|
2025-07-05 01:17:24 +02:00
|
|
|
<nav class="mt-8">
|
|
|
|
|
<a href="/articles" class="flex items-center px-4 py-3 text-gray-300 hover:bg-gray-700 hover:text-white transition-colors {{ request()->is('articles') ? 'bg-gray-700 text-white' : '' }}">
|
|
|
|
|
<i class="fas fa-newspaper mr-3"></i>
|
|
|
|
|
Articles
|
|
|
|
|
</a>
|
2025-07-05 01:55:53 +02:00
|
|
|
<a href="/platforms" class="flex items-center px-4 py-3 text-gray-300 hover:bg-gray-700 hover:text-white transition-colors {{ request()->is('platforms*') ? 'bg-gray-700 text-white' : '' }}">
|
|
|
|
|
<i class="fas fa-share-alt mr-3"></i>
|
|
|
|
|
Platforms
|
|
|
|
|
</a>
|
2025-07-05 02:29:50 +02:00
|
|
|
<a href="/channels" class="flex items-center px-4 py-3 text-gray-300 hover:bg-gray-700 hover:text-white transition-colors {{ request()->is('channels*') ? 'bg-gray-700 text-white' : '' }}">
|
|
|
|
|
<i class="fas fa-hashtag mr-3"></i>
|
|
|
|
|
Channels
|
2025-07-05 02:19:59 +02:00
|
|
|
</a>
|
2025-07-05 01:17:24 +02:00
|
|
|
<a href="/logs" class="flex items-center px-4 py-3 text-gray-300 hover:bg-gray-700 hover:text-white transition-colors {{ request()->is('logs') ? 'bg-gray-700 text-white' : '' }}">
|
|
|
|
|
<i class="fas fa-list mr-3"></i>
|
|
|
|
|
Logs
|
|
|
|
|
</a>
|
|
|
|
|
<a href="/horizon" class="flex items-center px-4 py-3 text-gray-300 hover:bg-gray-700 hover:text-white transition-colors">
|
|
|
|
|
<i class="fas fa-chart-line mr-3"></i>
|
|
|
|
|
Queue Monitor
|
|
|
|
|
</a>
|
|
|
|
|
</nav>
|
2025-07-05 02:19:59 +02:00
|
|
|
</div>
|