Files
exchange-2.0/routes/web.php
T
omair saleh 05401f6bbc large commit
2021-03-11 13:06:40 +08:00

41 lines
1.2 KiB
PHP

<?php
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('', function () {
return view('pages.accounts.login');
})->name('login');
Route::get('/account/email/verification/{token}', function ($token) {
return view('pages.accounts.email_verified', ['token' => $token]);
})->name('account.email.verification');
Route::get('/dashboard', function () {
return view('pages.dashboards.index');
})->name('dashboard');
Route::get('/settings', function () {
return view('pages.settings');
})->name('settings');
Route::get('/customers/{id}', function ($id) {
return view('pages.customers', ['id' => $id]);
})->name('customers');
Route::get('/transfer/{marking}', function ($marking) {
return view('pages.booking_details', ['marking' => $marking]);
})->name('booking.details');