@if($accounting->type == \App\Models\Accounting::$addiction)
@else
@endif
@if($accounting->is_cashback)
{{ trans('update.cashback') }}
@elseif(!empty($accounting->webinar_id) and !empty($accounting->webinar))
{{ $accounting->webinar->title }}
@elseif(!empty($accounting->bundle_id) and !empty($accounting->bundle))
{{ $accounting->bundle->title }}
@elseif(!empty($accounting->event_ticket_id) and !empty($accounting->eventTicket))
{{ $accounting->eventTicket->event->title }}
@elseif(!empty($accounting->meeting_package_id))
{{ trans('update.meeting_package') }}
@elseif(!empty($accounting->product_id) and !empty($accounting->product))
{{ $accounting->product->title }}
@elseif(!empty($accounting->meeting_time_id))
{{ trans('meeting.reservation_appointment') }}
@elseif(!empty($accounting->subscribe_id) and !empty($accounting->subscribe))
{{ $accounting->subscribe->title }}
@elseif(!empty($accounting->promotion_id) and !empty($accounting->promotion))
{{ $accounting->promotion->title }}
@elseif(!empty($accounting->registration_package_id) and !empty($accounting->registrationPackage))
{{ $accounting->registrationPackage->title }}
@elseif(!empty($accounting->installment_payment_id))
{{ trans('update.installment') }}
@elseif($accounting->store_type == \App\Models\Accounting::$storeManual)
{{ trans('financial.manual_document') }}
@elseif($accounting->type == \App\Models\Accounting::$addiction and $accounting->type_account == \App\Models\Accounting::$asset)
{{ trans('financial.charge_account') }}
@elseif($accounting->type == \App\Models\Accounting::$deduction and $accounting->type_account == \App\Models\Accounting::$income)
{{ trans('financial.payout') }}
@elseif($accounting->is_registration_bonus)
{{ trans('update.registration_bonus') }}
@else
---
@endif
@if(!empty($accounting->gift_id) and !empty($accounting->gift))
{!! trans('update.a_gift_for_name_on_date',['name' => $accounting->gift->name, 'date' => dateTimeFormat($accounting->gift->date, 'j M Y H:i')]) !!}
@endif
@if(!empty($accounting->webinar_id) and !empty($accounting->webinar))
#{{ $accounting->webinar->id }}{{ ($accounting->is_cashback) ? '-'.$accounting->webinar->title : '' }}
@elseif(!empty($accounting->bundle_id) and !empty($accounting->bundle))
#{{ $accounting->bundle->id }}{{ ($accounting->is_cashback) ? '-'.$accounting->bundle->title : '' }}
@elseif(!empty($accounting->event_ticket_id) and !empty($accounting->eventTicket))
#{{ $accounting->eventTicket->id }} ({{ $accounting->eventTicket->title }})
@elseif(!empty($accounting->meeting_package_id) and !empty($accounting->meetingPackage))
#{{ $accounting->meeting_package_id }} ({{ $accounting->meetingPackage->title }})
@elseif(!empty($accounting->product_id) and !empty($accounting->product))
#{{ $accounting->product->id }}{{ ($accounting->is_cashback) ? '-'.$accounting->product->title : '' }}
@elseif(!empty($accounting->meeting_time_id) and !empty($accounting->meetingTime))
{{ $accounting->meetingTime->meeting->creator->full_name }}
@elseif(!empty($accounting->subscribe_id) and !empty($accounting->subscribe))
{{ $accounting->subscribe->id }}{{ ($accounting->is_cashback) ? '-'.$accounting->subscribe->title : '' }}
@elseif(!empty($accounting->promotion_id) and !empty($accounting->promotion))
{{ $accounting->promotion->id }}{{ ($accounting->is_cashback) ? '-'.$accounting->promotion->title : '' }}
@elseif(!empty($accounting->registration_package_id) and !empty($accounting->registrationPackage))
{{ $accounting->registrationPackage->id }}{{ ($accounting->is_cashback) ? '-'.$accounting->registrationPackage->title : '' }}
@elseif(!empty($accounting->installment_payment_id))
@php
$installmentItemTitle = "--";
$installmentOrderPayment = $accounting->installmentOrderPayment;
if (!empty($installmentOrderPayment)) {
$installmentOrder = $installmentOrderPayment->installmentOrder;
if (!empty($installmentOrder)) {
$installmentItem = $installmentOrder->getItem();
if (!empty($installmentItem)) {
$installmentItemTitle = $installmentItem->title;
}
}
}
@endphp
{{ $installmentItemTitle }}
@else
---
@endif
|