お知らせ画面修正
All checks were successful
Deploy preview (main_watanabe) / deploy (push) Successful in 16s
All checks were successful
Deploy preview (main_watanabe) / deploy (push) Successful in 16s
This commit is contained in:
parent
7cffc87950
commit
6db4f25823
@ -238,15 +238,15 @@
|
|||||||
</div>
|
</div>
|
||||||
<div id="my-information" class="card border-success">
|
<div id="my-information" class="card border-success">
|
||||||
<div class="card-header border-success text-success">
|
<div class="card-header border-success text-success">
|
||||||
<h5 class="card-title">{{ $user_name }}さんへのお知らせ
|
<h5 class="card-title">{{ $user_name }}さんへのxお知らせ
|
||||||
<a href="{{ url('/user_information') }}" class="badge badge-secondary badge-pill float-right">お知らせ一覧を見る</a>
|
<a href="{{ route('user_information.index', ['management_code' => request()->route('management_code')]) }}" class="badge badge-secondary badge-pill float-right">お知らせ一覧を見る</a>
|
||||||
</h5>
|
</h5>
|
||||||
</div>
|
</div>
|
||||||
<ul class="info-slider_1-1">
|
<ul class="info-slider_1-1">
|
||||||
@if($information)
|
@if($information)
|
||||||
<li>
|
<li>
|
||||||
<span class="small" style="margin-right: 1em;">{{ $information->entry_date }}</span>
|
<span class="small" style="margin-right: 1em;">{{ $information->entry_date }}</span>
|
||||||
{{ $information->user_information_history }}
|
{{ str($information->user_information_history)->before("\n") }}
|
||||||
</li>
|
</li>
|
||||||
@else
|
@else
|
||||||
<li class="text-center">お知らせはありません。</li>
|
<li class="text-center">お知らせはありません。</li>
|
||||||
|
|||||||
@ -17,7 +17,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<div class="col-12 col-lg-7 mb10">
|
<div class="col-12 col-lg-7 mb10">
|
||||||
<p class="h5 font-weight-normal">
|
<p class="h5 font-weight-normal">
|
||||||
{{ $information->user_information_history }}
|
{!! nl2br(e($information->user_information_history)) !!}
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
@empty
|
@empty
|
||||||
@ -30,7 +30,7 @@
|
|||||||
{{ $informations->links('partials.paging') }}
|
{{ $informations->links('partials.paging') }}
|
||||||
</div>
|
</div>
|
||||||
<div class="col-12 col-md-6 offset-0 offset-md-3 mt-4 mb50">
|
<div class="col-12 col-md-6 offset-0 offset-md-3 mt-4 mb50">
|
||||||
<a href="{{ url('mypage') }}" class="btn btn-lg btn-block btn-outline-success">マイページへ戻る</a>
|
<a href="{{ route('mypage', ['management_code' => request()->route('management_code')]) }}" class="btn btn-lg btn-block btn-outline-success">マイページへ戻る</a>
|
||||||
</div>
|
</div>
|
||||||
</section>
|
</section>
|
||||||
</main>
|
</main>
|
||||||
|
|||||||
@ -17,7 +17,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<div class="col-12 col-lg-7 mb10">
|
<div class="col-12 col-lg-7 mb10">
|
||||||
<p class="h5 font-weight-normal">
|
<p class="h5 font-weight-normal">
|
||||||
{{ $information->user_information_history }}
|
{!! nl2br(e($information->user_information_history)) !!}
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
@empty
|
@empty
|
||||||
@ -27,10 +27,10 @@
|
|||||||
@endforelse
|
@endforelse
|
||||||
|
|
||||||
<div class="col-12 col-md-5 offset-md-1 mt10">
|
<div class="col-12 col-md-5 offset-md-1 mt10">
|
||||||
<a href="{{ url('mypage') }}" class="btn btn-lg btn-block btn-outline-success">マイページへ戻る</a>
|
<a href="{{ route('mypage', ['management_code' => request()->route('management_code')]) }}" class="btn btn-lg btn-block btn-outline-success">マイページへ戻る</a>
|
||||||
</div>
|
</div>
|
||||||
<div class="col-12 col-md-5 mt10">
|
<div class="col-12 col-md-5 mt10">
|
||||||
<a href="{{ url('user_information/history') }}" class="btn btn-lg btn-block btn-outline-success">過去のお知らせ</a>
|
<a href="{{ route('user_information.history', ['management_code' => request()->route('management_code')]) }}" class="btn btn-lg btn-block btn-outline-success">過去のお知らせ</a>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</section>
|
</section>
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user