ChatController.php 159 B

1234567891011
  1. <?php
  2. namespace App\Http\Controllers;
  3. class ChatController extends Controller
  4. {
  5. public function __invoke()
  6. {
  7. return inertia("Chat");
  8. }
  9. }