This commit is contained in:
2023-01-24 15:13:03 +10:00
parent decf5c7d39
commit 4c83399d4a
261 changed files with 33538 additions and 1 deletions

23
routes/web.php Normal file
View File

@@ -0,0 +1,23 @@
<?php
use App\Mail\EmailVerify;
use Illuminate\Support\Facades\Route;
/*
|--------------------------------------------------------------------------
| Web Routes
|--------------------------------------------------------------------------
|
| Here is where you can register web routes for your application. These
| routes are loaded by the RouteServiceProvider within a group which
| contains the "web" middleware group. Now create something great!
|
*/
Route::get('/test-email', function () {
return new EmailVerify();
});
Route::get('/{any}', function () {
return view('app');
})->where('any', '.*');