50 行
3.0 KiB
PHP
50 行
3.0 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('welcome');
|
|
});
|
|
|
|
Route::get('/p-account', function () {return view('p_account.index');});
|
|
|
|
Route::get('/contact-us', function () { return view('pages.contact.index'); });
|
|
Route::get('/contact-us/complete/', function () { return view('pages.contact.complete'); });
|
|
Route::get('/unknown-error ', function () { return view('pages.contact.unknown_error'); });
|
|
|
|
Route::get('/register/c-account', function () { return view('c_account.auth.register.index'); });
|
|
Route::get('/register/c-account/complete', function () { return view('c_account.auth.register.complete'); });
|
|
Route::get('/register/c-account/error', function () { return view('c_account.auth.register.error'); });
|
|
|
|
Route::get('/login/c-account', function () { return view('c_account.auth.login.index'); });
|
|
|
|
Route::get('/forgot-password/c-account', function () { return view('c_account.auth.forgot_password.index'); });
|
|
Route::get('/forgot-password/c-account/reset', function () { return view('c_account.auth.forgot_password.reset'); });
|
|
Route::get('/forgot-password/c-account/complete', function () { return view('c_account.auth.forgot_password.complete'); });
|
|
|
|
Route::get('/c-account/meeting', function () { return view('c_account.meeting.index'); });
|
|
Route::get('/c-account/meeting/detail/{id}', function () { return view('c_account.meeting.detail'); });
|
|
|
|
Route::get('/c-account/search', function () { return view('c_account.search.index'); });
|
|
|
|
Route::get('/c-account/parent', function () { return view('c_account.parent.index'); });
|
|
Route::get('/c-account/parent/detail/{father_id}', function () { return view('c_account.parent.detail'); });
|
|
|
|
Route::get('/c-account/profile', function () { return view('c_account.profile.index'); });
|
|
Route::get('/c-account/profile/detail/{child_id}', function () { return view('c_account.profile.detail'); });
|
|
Route::get('/c-account/profile/edit/{child_id}', function () { return view('c_account.profile.edit'); });
|
|
Route::get('/c-account/profile/password-edit/{child_id}', function () { return view('c_account.profile.password_edit'); });
|
|
Route::get('/c-account/profile/withdrawal', function () { return view('c_account.profile.withdrawal'); });
|
|
|
|
Route::get('/withdrawal/complete', function () { return view('c_account.withdrawal.complete'); }); |