28 lines
852 B
PHP
28 lines
852 B
PHP
<?php
|
|
|
|
use App\Http\Controllers\HomeController;
|
|
use App\Http\Controllers\ProfileController;
|
|
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 and all of them will
|
|
| be assigned to the "web" middleware group. Make something great!
|
|
|
|
|
*/
|
|
|
|
Route::get('/', [HomeController::class, 'index']);
|
|
Route::get('/apply-for-event/{id}', [HomeController::class, 'apply']);
|
|
Route::post('/submit',[HomeController::class, 'submit']);
|
|
Route::view('thank', 'success');
|
|
|
|
Route::view('scan', 'scan');
|
|
Route::post('/post-scan', [HomeController::class, 'shownUp']);
|
|
|
|
|
|
require __DIR__.'/auth.php';
|