p_accountのrouterおよびbladeを追加

このコミットが含まれているのは:
トランギャー 2021-09-30 13:32:48 +07:00
コミット b9ebe83901
31個のファイルの変更50行の追加0行の削除

0
backend/resources/js/parent/child/add.jsx ノーマルファイル
ファイルの表示

ファイルの表示

0
backend/resources/js/parent/child/edit.jsx ノーマルファイル
ファイルの表示

0
backend/resources/js/parent/child/index.jsx ノーマルファイル
ファイルの表示

ファイルの表示

0
backend/resources/js/parent/meeting/add.jsx ノーマルファイル
ファイルの表示

ファイルの表示

ファイルの表示

ファイルの表示

ファイルの表示

ファイルの表示

ファイルの表示

ファイルの表示

ファイルの表示

ファイルの表示

ファイルの表示

ファイルの表示

ファイルの表示

ファイルの表示

ファイルの表示

ファイルの表示

@ -0,0 +1,32 @@
<!doctype html>
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="csrf-token" content="{{ csrf_token() }}">
<title>@yield('title')</title>
<link rel="dns-prefetch" href="//fonts.gstatic.com">
<link href="https://use.fontawesome.com/releases/v5.6.1/css/all.css" rel = "stylesheet">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Nunito" rel="stylesheet">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<link href="{{ asset('css/app.css') }}" rel="stylesheet">
</head>
<body class="">
<main class="l-container">
<div class="l-content">
@yield('content')
</div>
</main>
</body>
<script src="{{ asset('js/app.js') }}"></script>
</html>

ファイルの表示

ファイルの表示

ファイルの表示

ファイルの表示

ファイルの表示

ファイルの表示

ファイルの表示

ファイルの表示

ファイルの表示

ファイルの表示

@ -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');});