41 行
2.2 KiB
PHP
41 行
2.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('welcome');
|
|
});
|
|
|
|
Route::get('/p-account/meeting', function () {return view('p_account.meeting.index');});
|
|
Route::get('/p-account/meeting/detail/{meeting_id}', function () {return view('p_account.meeting.detail');});
|
|
Route::get('/p-account/meeting/new', function () {return view('p_account.meeting.add');});
|
|
Route::get('/p-account/meeting/edit/{child_id}', function () {return view('p_account.meeting.edit');});
|
|
|
|
Route::get('/p-account/favorite', function () {return view('p_account.favorite.index');});
|
|
Route::get('/p-account/search', function () {return view('p_account.search.index');});
|
|
|
|
Route::get('/p-account/child', function () {return view('p_account.child.index');});
|
|
Route::get('/p-account/child/add', function () {return view('p_account.child.add');});
|
|
Route::get('/p-account/child/edit/hire-date/{child_id}', function () {return view('p_account.child.edit');});
|
|
Route::get('/p-account/child/detail/{child_id}', function () {return view('p_account.child.detail');});
|
|
|
|
Route::get('/p-account/profile', function () {return view('p_account.profile.index');});
|
|
Route::get('/p-account/profile/edit/{father_id}', function () {return view('p_account.profile.edit');});
|
|
Route::get('/p-account/profile/edit/password/{father_id}', function () {return view('p_account.profile.password_edit');});
|
|
Route::get('/p-account/profile/withdrawal', function () {return view('p_account.profile.withdrawal');});
|
|
Route::get('/p-account/profile/withdrawal/complete', function () {return view('p_account.profile.withdrawal_complete');});
|
|
|
|
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'); }); |