Initial Commit
linter / quality (push) Canceled after 0s
tests / ci (8.3) (push) Canceled after 0s
tests / ci (8.4) (push) Canceled after 0s
tests / ci (8.5) (push) Canceled after 0s

This commit is contained in:
2026-08-28 23:20:23 +10:00
parent f00405ed24
commit cc225414e0
8 changed files with 578 additions and 4 deletions
@@ -0,0 +1,21 @@
<?php
namespace App\Http\Controllers;
use Inertia\Inertia;
use Inertia\Response;
class MessagesController extends Controller
{
public function index(): Response
{
return Inertia::render('Messages/Index');
}
public function show(string $threadId): Response
{
return Inertia::render('Messages/Show', [
'threadId' => $threadId,
]);
}
}