Summary Preview for {{$service->name}} - {{$service->sub_category}} Application

@if ($serviceSlug == "vehicle") @lang("vehicle.vehicle_details") @else @lang("property.property_details") @endif

@if ($serviceSlug == "vehicle") @include('livewire.common._vehicleview') @else @include('livewire.common._propertyview') @endif
@if($sellers)

@lang("customer.seller_details")

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

@lang("customer.seller_third_party")

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

@lang("customer.buyer_details")

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

@lang("customer.buyer_third_party")

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

@lang("mof.guarantors")

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

@if ($service->name == "Rental") @lang("transactions.rental_details") @else @lang("transactions.sale_details") @endif

@if ($service->name == "Rental") @include('livewire.transaction.rental._rentalview') @else @if ($serviceSlug == "vehicle") @include('livewire.transaction.vehicle._saleview') @else @include('livewire.transaction.property._saleview') @endif @endif