@extends('layouts.app') @section('content')

領収書発行

{{-- --}} @if ($receipt_user->receipt_flg != '1')
warning この内容で領収書を発行してよろしいですか?
宛名: {{ $user->name_last }}{{ $user->name_first }}
決済日:{{ \Carbon\Carbon::create($receipt_user->pay_date)->format('Y') }}年{{ \Carbon\Carbon::create($receipt_user->pay_date)->format('m') }}月{{ \Carbon\Carbon::create($receipt_user->pay_date)->format('d') }}日
金額:{{ $receipt_user->pay_price }}円
warning 一度領収書を発行すると、その後のユーザー情報ページでの変更内容は領収書に反映されません。
内容に変更が必要な方は領収書ダウンロードボタンを押す前に、以下の「ユーザー情報ページへ」より変更してください。
@else
一度ダウンロードされましたので、領収書の内容は変更できません。
領収書の内容を変更の必要がある方は下記メールまでご連絡ください。
email {{ config('mail.mail_host') }}
@endif
@csrf @method('POST')
@endsection