diff --git a/backend/resources/js/parent/child/add.jsx b/backend/resources/js/parent/child/add.jsx new file mode 100644 index 00000000..e69de29b diff --git a/backend/resources/js/parent/child/detail.jsx b/backend/resources/js/parent/child/detail.jsx new file mode 100644 index 00000000..e69de29b diff --git a/backend/resources/js/parent/child/edit.jsx b/backend/resources/js/parent/child/edit.jsx new file mode 100644 index 00000000..e69de29b diff --git a/backend/resources/js/parent/child/index.jsx b/backend/resources/js/parent/child/index.jsx new file mode 100644 index 00000000..e69de29b diff --git a/backend/resources/js/parent/favorite/index.jsx b/backend/resources/js/parent/favorite/index.jsx new file mode 100644 index 00000000..e69de29b diff --git a/backend/resources/js/parent/meeting/add.jsx b/backend/resources/js/parent/meeting/add.jsx new file mode 100644 index 00000000..e69de29b diff --git a/backend/resources/js/parent/meeting/detail.jsx b/backend/resources/js/parent/meeting/detail.jsx new file mode 100644 index 00000000..e69de29b diff --git a/backend/resources/js/parent/meeting/edit.jsx b/backend/resources/js/parent/meeting/edit.jsx new file mode 100644 index 00000000..e69de29b diff --git a/backend/resources/js/parent/meeting/index.jsx b/backend/resources/js/parent/meeting/index.jsx new file mode 100644 index 00000000..e69de29b diff --git a/backend/resources/js/parent/profile/edit.jsx b/backend/resources/js/parent/profile/edit.jsx new file mode 100644 index 00000000..e69de29b diff --git a/backend/resources/js/parent/profile/index.jsx b/backend/resources/js/parent/profile/index.jsx new file mode 100644 index 00000000..e69de29b diff --git a/backend/resources/js/parent/profile/password_edit.jsx b/backend/resources/js/parent/profile/password_edit.jsx new file mode 100644 index 00000000..e69de29b diff --git a/backend/resources/js/parent/profile/withdrawal.jsx b/backend/resources/js/parent/profile/withdrawal.jsx new file mode 100644 index 00000000..e69de29b diff --git a/backend/resources/js/parent/profile/withdrawal_complete.jsx b/backend/resources/js/parent/profile/withdrawal_complete.jsx new file mode 100644 index 00000000..e69de29b diff --git a/backend/resources/js/parent/search/index.jsx b/backend/resources/js/parent/search/index.jsx new file mode 100644 index 00000000..e69de29b diff --git a/backend/resources/views/paccount/child/add.blade.php b/backend/resources/views/paccount/child/add.blade.php new file mode 100644 index 00000000..e69de29b diff --git a/backend/resources/views/paccount/child/detail.blade.php b/backend/resources/views/paccount/child/detail.blade.php new file mode 100644 index 00000000..e69de29b diff --git a/backend/resources/views/paccount/child/edit.blade.php b/backend/resources/views/paccount/child/edit.blade.php new file mode 100644 index 00000000..e69de29b diff --git a/backend/resources/views/paccount/child/index.blade.php b/backend/resources/views/paccount/child/index.blade.php new file mode 100644 index 00000000..e69de29b diff --git a/backend/resources/views/paccount/favorite/index.blade.php b/backend/resources/views/paccount/favorite/index.blade.php new file mode 100644 index 00000000..e69de29b diff --git a/backend/resources/views/paccount/layout.blade.php b/backend/resources/views/paccount/layout.blade.php new file mode 100644 index 00000000..d1cc6c93 --- /dev/null +++ b/backend/resources/views/paccount/layout.blade.php @@ -0,0 +1,32 @@ + + + + + + + + + @yield('title') + + + + + + + + + + + + + +
+
+ @yield('content') +
+
+ + + + + diff --git a/backend/resources/views/paccount/meeting/add.blade.php b/backend/resources/views/paccount/meeting/add.blade.php new file mode 100644 index 00000000..e69de29b diff --git a/backend/resources/views/paccount/meeting/detail.blade.php b/backend/resources/views/paccount/meeting/detail.blade.php new file mode 100644 index 00000000..e69de29b diff --git a/backend/resources/views/paccount/meeting/edit.blade.php b/backend/resources/views/paccount/meeting/edit.blade.php new file mode 100644 index 00000000..e69de29b diff --git a/backend/resources/views/paccount/meeting/index.blade.php b/backend/resources/views/paccount/meeting/index.blade.php new file mode 100644 index 00000000..e69de29b diff --git a/backend/resources/views/paccount/profile/edit.blade.php b/backend/resources/views/paccount/profile/edit.blade.php new file mode 100644 index 00000000..e69de29b diff --git a/backend/resources/views/paccount/profile/index.blade.php b/backend/resources/views/paccount/profile/index.blade.php new file mode 100644 index 00000000..e69de29b diff --git a/backend/resources/views/paccount/profile/password_edit.blade.php b/backend/resources/views/paccount/profile/password_edit.blade.php new file mode 100644 index 00000000..e69de29b diff --git a/backend/resources/views/paccount/profile/withdrawal.blade.php b/backend/resources/views/paccount/profile/withdrawal.blade.php new file mode 100644 index 00000000..e69de29b diff --git a/backend/resources/views/paccount/search/index.blade.php b/backend/resources/views/paccount/search/index.blade.php new file mode 100644 index 00000000..e69de29b diff --git a/backend/routes/web.php b/backend/routes/web.php index 06495494..ec5f57fc 100644 --- a/backend/routes/web.php +++ b/backend/routes/web.php @@ -17,5 +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/favorite', function () {return view('paccount.favorite.index');}); +Route::get('/p-account/search', function () {return view('paccount.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/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('/contact-us', function () {return view('contact.index');}); Route::get('/contact-us/complete/', function () {return view('contact.complete');});