Skip to content

Commit

Permalink
Update layout.blade.php
Browse files Browse the repository at this point in the history
  • Loading branch information
PapaRascal2020 committed Sep 27, 2024
1 parent fcd48ad commit 8b9bd23
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions stubs/default/resources/views/Shared/layout.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,6 @@
</div>
<nav class="space-y-4">
<a href="/sidekick/playground/chat" class="block text-white hover:bg-gray-600 px-4 py-2 rounded">Chats</a>
@foreach((new SidekickConversation())->database()->all('id', 'model', 'created_at') as $conversation)
<a href="/sidekick/playground/chat/{{$conversation->id}}"
class="block text-white text-xs hover:bg-gray-600 px-6 py-2 rounded">
{{($conversation->model != '') ? $conversation->model : 'Auto-Select'}} : {{explode('-', $conversation->id)[0]}}
</a>
@endforeach
<a href="/sidekick/playground/completion" class="block text-white hover:bg-gray-600 px-4 py-2 rounded">Completion</a>
<a href="/sidekick/playground/image" class="block text-white hover:bg-gray-600 px-4 py-2 rounded">Image Generation</a>
<a href="/sidekick/playground/audio" class="block text-white hover:bg-gray-600 px-4 py-2 rounded">Audio Generation</a>
Expand Down

0 comments on commit 8b9bd23

Please sign in to comment.