This commit is contained in:
2023-11-14 09:40:58 +10:00
parent 7d9b6793d3
commit 6f53c7ea6f
51 changed files with 110 additions and 5546 deletions

View File

@@ -8,11 +8,11 @@ use Illuminate\Support\Facades\Route;
|--------------------------------------------------------------------------
|
| 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!
| routes are loaded by the RouteServiceProvider and all of them will
| be assigned to the "web" middleware group. Make something great!
|
*/
Route::get('/{any}', function () {
return view('app');
})->where('any', '.*');
Route::get('/', function () {
return view('welcome');
});