このコミットが含まれているのは:
トランギャー 2021-09-30 17:00:36 +07:00
コミット c56500ce6c
17個のファイルの変更21行の追加14行の削除

ファイルの表示

@ -0,0 +1,7 @@
@extends('p_account.layout')
@section('title', 'Meeting')
@section('content')
<div id="meeting"></div>
@endsection

ファイルの表示

@ -17,23 +17,23 @@ Route::get('/', function () {
return view('welcome');
});
Route::get('/p-account/meeting', function () {return view('paccount.meeting.index');});
Route::get('/p-account/meeting/detail/{meeting_id}', function () {return view('paccount.meeting.detail');});
Route::get('/p-account/meeting/new', function () {return view('paccount.meeting.add');});
Route::get('/p-account/meeting/edit/{child_id}', function () {return view('paccount.meeting.edit');});
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('paccount.favorite.index');});
Route::get('/p-account/search', function () {return view('paccount.search.index');});
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('paccount.child.index');});
Route::get('/p-account/child/add', function () {return view('paccount.child.add');});
Route::get('/p-account/child/edit/hire-date/{child_id}', function () {return view('paccount.child.edit');});
Route::get('/p-account/child/detail/{child_id}', function () {return view('paccount.child.detail');});
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('paccount.profile.index');});
Route::get('/p-account/profile/edit/{father_id}', function () {return view('paccount.profile.edit');});
Route::get('/p-account/profile/edit/password/{father_id}', function () {return view('paccount.profile.password_edit');});
Route::get('/p-account/profile/withdrawal', function () {return view('paccount.profile.withdrawal');});
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('/contact-us', function () {return view('pages.contact.index');});
Route::get('/contact-us/complete/', function () {return view('pages.contact.complete');});