|
{{ $transaction->first()->coupon->present()->code }}
|
{{ $transaction->first()->coupon->consumer->fullname }}
|
{{ $transaction->first()->coupon->agent->fullname }}
|
{{ $transaction->where('type', App\Transaction::TYPE_SELLER_OPERATOR_PROVISION_PAYMENT)->first()->present()->amount }}
|
{{ $transaction->where('type', App\Transaction::TYPE_SELLER_CONSUMER_DISCOUNT_PAYMENT)->first()->present()->amount }}
|
{{ $transaction->where('type', App\Transaction::TYPE_SELLER_AGENT_PROVISION_PAYMENT)->first()->present()->amount }}
|
{{ $transaction->first()->present()->creationDate }}
|
@if (App\Transaction::STATUS_ALLOCATED === $transaction->first()->status && App\Coupon::STATUS_PAID === $transaction->first()->coupon->status)
Einziehbar
@elseif (App\Transaction::STATUS_ALLOCATED === $transaction->first()->status && App\Coupon::STATUS_DONE === $transaction->first()->coupon->status)
Im Banklauf
@else
{{ $transaction->first()->present()->statusBootstrap }}
@endif
|
@if ($transaction->first()->invoice_id)
@endif
|