<!DOCTYPE html> <html lang="ja"> <head> <meta charset="utf-8"> <title>領収証</title> <link rel="stylesheet" href="{{ resource_path('views/pdf/common.css') }}" /> <link rel="stylesheet" href="{{ resource_path('views/pdf/receipt.css') }}" /> </head> <body> <div id="content"> <div id="title" class="flex-center"> <div> 領収書 </div> </div> <div id="receiptCustomerName" class="flex-end"> <div> {{ $receiptCustomerName }}様 </div> <div id="receiptDate"> 領収日 {{ $receiptDate }} </div> </div> <div id="receiptTotalAmount" class="flex-space-between"> <div> 金額 </div> <div> ¥{{ $receiptTotalAmount }}- </div> <div style="font-weight: normal;"> (税込) </div> </div> <div id="taxTotalAmount" class="flex-end"> <div class="flex-space-between"> <div> 税率10% </div> <div> ¥{{ number_format($taxTotalAmount) }} </div> </div> </div> <div id="detailTable"> <table> <thead> <th class="parkingName">駐車場名</th> <th class="amount">金額</th> <th class="targetMonth">対象月</th> <th class="memo">備考</th> </thead> <tbody> @foreach($detail as $ele) <tr> <td>{{ $ele->parkingName }}</td> <td>¥{{ number_format($ele->amount) }}</td> <td>{{ sprintf("%d月分", $ele->targetMonth) }}</td> <td>{{ $ele->memo }}</td> </tr> @endforeach </tbody> </table> </div> <div style="margin-top: 10mm;"> 上記正に領収いたしました。 </div> <div id="company" class="flex-end"> <div> <p class="name">一般財団法人 京都市都市整備公社</p> <p class="zipCode">〒600-8421</p> <p class="address1">京都市下京区小道通烏丸西入童侍者町167番</p> <p class="invoiceNo">登録番号 T7 1300 0501 2806</p> </div> <img id="stamp" width="50mm" height="50mm" src="{{ resource_path('views/pdf/stamp.png') }}" /> </div> </div> </body> </html>