Compare commits
2 Commits
5a7721b217
...
70a0919746
| Author | SHA1 | Date | |
|---|---|---|---|
| 70a0919746 | |||
| ecc7095818 |
@ -23,6 +23,10 @@ class UserInformationController extends Controller
|
||||
->limit(10)
|
||||
->get();
|
||||
|
||||
\Log::info('お知らせ画面にアクセス', [
|
||||
'user_id' => $user_id,
|
||||
]);
|
||||
|
||||
return view('user_information.index', [
|
||||
'user_name' => $user_name, // ユーザー名(ヘッダー用)
|
||||
'informations' => $informations
|
||||
@ -44,6 +48,10 @@ class UserInformationController extends Controller
|
||||
->select('entry_date', 'user_information_history')
|
||||
->paginate(10);
|
||||
|
||||
\Log::info('過去のお知らせ画面にアクセス', [
|
||||
'user_id' => $user_id,
|
||||
]);
|
||||
|
||||
return view('user_information.history', [
|
||||
'user_name' => $user_name, // ユーザー名(ヘッダー用)
|
||||
'informations' => $informations
|
||||
|
||||
@ -6,7 +6,7 @@
|
||||
</header>
|
||||
<section id="" class="container mt30 mb50">
|
||||
<div class="col-12 col-md-8 offset-0 offset-md-2 mb30">
|
||||
<h3 class="text-center alert-success">お知らせ一覧</h3>
|
||||
<h3 class="text-center alert-success">過去のお知らせ</h3>
|
||||
</div>
|
||||
<div class="row">
|
||||
@forelse($informations as $information)
|
||||
|
||||
Loading…
Reference in New Issue
Block a user