我想用一个按钮显示一个或多个JPG文件,我使用foreach
循环来显示这些图像,但是当我有2个文件时,我现在得到2个按钮。即使我有多个图像,如何只获得一个按钮。
@foreach($letter->documents AS $document)
@for($page = 1; $page <= $document->pages; $page++)
<input onclick="window.open('{{ '/send/'.$letter->id.'/documents/'.$document->id.'/'.$page.'/778x1008'}}')" value="View PDF example" type="button" class="left"></input>
@endfor
@endforeach
答案 0 :(得分:1)
Laravel循环有一个继承$loop
变量,可以在其中找到文档here。
简而言之,可以使用:
@foreach($letter->documents AS $document)
//Show image
@if ($loop->last)
//Create button
@endif
@endforeach