Files
dredgegram/app/Http/Controllers/MessagesController.php
dredgy cc225414e0
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
Initial Commit
2026-08-28 23:20:23 +10:00

22 lines
397 B
PHP

<?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,
]);
}
}