1.7.36. PaymentTransaction 드롭 (위로)
1.7.36.1. 방법
1.7.36.1.1. 오류
제출 실패 후 이 모델 형식이 렌더링되면 발생한 오류를 반환합니다.
{{ payment_transaction.errors.name | inline_errors }}
1.7.36.1.2. 통화
통화 반환
{% for payment_transaction in invoice.payment_transactions %} <tr> <td> {% if payment_transaction.success? %} Success {% else %} Failure {% endif %} </td> <td> {{ payment_transaction.created_at }} </td> <td> {{ payment_transaction.reference }} </td> <td> {{ payment_transaction.message }} </td> <td> {{ payment_transaction.amount }} {{ payment_transaction.currency }} </td> </tr> {% endfor %}
1.7.36.1.3. 금액
금액을 반환합니다
1.7.36.1.4. created_at
생성 날짜를 반환합니다.
1.7.36.1.5. 성공 여부
성공하면 true를 반환합니다.
1.7.36.1.6. message
트랜잭션 메시지를 반환합니다.
1.7.36.1.7. reference
참조를 반환합니다.