mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/exchange.git
synced 2026-08-19 12:24:09 +00:00
33 lines
1.0 KiB
PHP
33 lines
1.0 KiB
PHP
<?php
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| 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('welcome');
|
|
});
|
|
|
|
/*Route for the booking */
|
|
// Route::get('/booking', 'BookingController@index');
|
|
|
|
// Route::get('/booking/{booking}', 'BookingController@show');
|
|
|
|
// Route::post('/booking', 'BookingController@create');
|
|
|
|
// Route::post('/booking', 'BookingController@store');
|
|
|
|
// Route::put('/booking/{user-id}', 'BookingController@update');
|
|
|
|
// Route::delete('/booking/{user-id}', 'BookingController@delete');
|
|
|
|
Route::get('password/reset/{token}', 'Auth\ResetPasswordController@showResetForm')->name('password.request');
|
|
Route::post('password/reset', 'Auth\ResetPasswordController@postReset')->name('password.reset');
|