このリポジトリは2023-09-09にアーカイブされています。 ファイルの閲覧とクローンは可能ですが、プッシュ、イシューの作成、プルリクエストはできません。
kikikan/backend/routes/web.php

66 行
4.5 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.index');});
Route::get('/p-account/meeting/detail/{meeting_id}', function () {return view('p_account.index');});
Route::get('/p-account/meeting/new', function () {return view('p_account.index');});
Route::get('/p-account/meeting/edit/{child_id}', function () {return view('p_account.index');});
Route::get('/p-account/favorite', function () {return view('p_account.index');});
Route::get('/p-account/search', function () {return view('p_account.index');});
Route::get('/p-account/child', function () {return view('p_account.index');});
Route::get('/p-account/child/add', function () {return view('p_account.index');});
Route::get('/p-account/child/edit/hire-date/{child_id}', function () {return view('p_account.index');});
Route::get('/p-account/child/detail/{child_id}', function () {return view('p_account.index');});
Route::get('/p-account/profile', function () {return view('p_account.index');});
Route::get('/p-account/profile/edit/{father_id}', function () {return view('p_account.index');});
Route::get('/p-account/profile/edit/password/{father_id}', function () {return view('p_account.index');});
Route::get('/p-account/profile/withdrawal', function () {return view('p_account.index');});
Route::get('/p-account/profile/withdrawal/complete', function () {return view('p_account.index');});
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-temporary/c-account', function () { return view('c_account.auth.register.temporary'); });
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'); });