You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- <!DOCTYPE html>
- <html lang="ja">
-
- <head>
- <meta charset="utf-8">
- <title>領収証</title>
- <style>
-
- </style>
- <link rel="stylesheet" href="{{ resource_path('css/receipt_common.css') }}">
- <link rel="stylesheet" href="{{ resource_path('css/receipt_a4.css') }}">
- </head>
-
- <body>
-
- <div class="main">
-
- <section class="header">
- <p>発行日 {{ $status_receipt_confirm_datetime }}</p>
- <p>領収証番号 {{ $receipt_no }}</p>
- </section>
- <section class="title b">
- <P>領収証</P>
- </section>
- <section class="name">
- {{ $receipt_name }} 様
- </section>
- <section class="amount">
- <div class="container">
- <div class="item">
- ¥{{ $receipt_amount }} -
- </div>
- <div class="item tax">
- (内税 10%対象)
- </div>
- </div>
- </section>
- <section class="amount_sub">
- 内消費税 ¥{{ $tax_amount }} -
- </section>
- <section class="description">
- <P>但し {{ $receipt_purpose }}として</P>
- <P>上記正に領収いたしました。</P>
- <P>利用日 : {{ $receipt_use_date }}</P>
- <P>駐車場名 : {{ $parking_name }}</P>
- </section>
- <section class="issuer">
- <P>発行者 {{ $customer_name }}</P>
- <P>インボイス登録番号 {{ $receipt_invoice_no }}</P>
-
- </section>
-
- </div>
- </body>
-
- </html>
|