Skip to content

Commit

Permalink
公演詳細 微修正
Browse files Browse the repository at this point in the history
ヘルパ関数置換・nullカウント回避・実体参照置換によるIDEエラー抑制
  • Loading branch information
miyacorata committed Sep 15, 2022
1 parent d52c6cc commit 6ab8a2e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions resources/views/play/show.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -162,11 +162,11 @@
<tr>
<td>{{ $play[$cast]['schema:name'][0] }}</td>
<td>
@if(count($play[$cast]['lily:performAs']) > 0)
(
@if(!empty($play[$cast]['lily:performAs']))
&#x0028;
@foreach($play[$cast]['lily:performAs'] as $performAs)
@if(!empty($play[$performAs]))
<a href="{{ route('lily.show', ['lily' => str_replace('lilyrdf:', '', $performAs)]) }}">
<a href="{{ route('lily.show', ['lily' => removePrefix($performAs)]) }}">
{{ $play[$performAs]['schema:name'][0] }}</a> 役
@else
{{ $performAs }}
Expand All @@ -175,7 +175,7 @@
@endif
@endforeach
)
&#x0029;
@endif
</td>
</tr>
Expand Down

0 comments on commit 6ab8a2e

Please sign in to comment.