@section('title') Transaction View @stop

@lang("transactions.transaction") - TX-{{ $transaction->id }} - @if($transaction->status == "UNPAID" || $transaction->status == "DRAFT") Unpaid @if($payment_issue) @else @if(sizeof($external_payments) == 0) @if ($transaction->service->name == "Rental") @if ($transaction->service->sub_category == "Vehicle") @lang("payment.pay") @else @lang("payment.pay") @endif @else @lang("payment.pay") @endif @else @if ($access_payment_details) @lang('message.error.check_payments') @else @lang('message.error.payment_failed_contact') @endif @endif @endif @else Paid @endif

Loading Please Wait...
@if (session('status'))
{{ session('status') }}
@endif @if (session('error'))
{{ session('error') }}
@endif

@include("livewire.transaction.$serviceSlug._saleview") @include("admin.admin.common-audit-partial")

@include("livewire.common._" . $serviceSlug . "view")

@include('livewire.common._customerlistview', ["customers" => $sellers, "reference" => App\Config\AppConstants::SELLER])

@include('livewire.common._customerlistview', ["customers" => $buyers, "reference" => App\Config\AppConstants::BUYER])

@include('livewire.common._customerlistview', ["customers" => $sellerThirdPartys, "reference" => App\Config\AppConstants::SELLER_THIRD_PARTY])

@include('livewire.common._customerlistview', ["customers" => $buyerThirdPartys, "reference" => App\Config\AppConstants::BUYER_THIRD_PARTY])

@include('livewire.common._customerlistview', ["customers" => $guarantors, "reference" => App\Config\AppConstants::GUARANTOR])

@if ($upload_document) @livewire("document.document-upload-component", ["transactionId" => $transaction->id, "userId" => $user_id]) @endif @include("livewire.common._transaction_documents")

@if($access_payment_details)

@include('livewire.common._external_payments', ["external_payments" => $external_payments]) @include('livewire.transaction._external_payment_confirmation_model')

@endif
@section('footer_scripts') @stop