Initial project

This commit is contained in:
2026-05-01 00:41:02 +03:30
parent d324115341
commit cde71d5761
172 changed files with 22074 additions and 12 deletions

12
routes/web.php Normal file
View File

@@ -0,0 +1,12 @@
<?php
use App\Livewire\Chat\ChatPage;
use Illuminate\Support\Facades\Route;
Route::view('/', 'welcome')->name('home');
Route::middleware(['auth', 'verified'])->group(function () {
Route::livewire('dashboard', ChatPage::class)->name('dashboard');
});
require __DIR__.'/settings.php';