implement chat layout

This commit is contained in:
2026-05-01 00:56:34 +03:30
parent cde71d5761
commit ff86141fd6
5 changed files with 36 additions and 3 deletions

View File

@@ -1,8 +1,8 @@
<?php
use App\Livewire\Chat\ConversationList;
use App\Livewire\Chat\ConversationDetailsPanel;
use App\Livewire\Chat\ConversationHeader;
use App\Livewire\Chat\ConversationList;
use App\Livewire\Chat\ConversationView;
use App\Livewire\Chat\MessageComposer;
use App\Models\Conversation;
@@ -20,7 +20,9 @@ test('authenticated users can visit the chat dashboard', function () {
$this->actingAs($user)
->get(route('dashboard'))
->assertOk()
->assertSee('Inbox');
->assertSee('Inbox')
->assertDontSee('Repository')
->assertDontSee('Documentation');
});
test('conversation list only shows conversations the user participates in', function () {