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

@if ($propertyId) @include('livewire.common._propertyview') @else @include('livewire.common._vehicleview') @endif
@if($sellers)

@lang("customer.owners")

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

@lang("customer.owners_third_party")

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

@lang("customer.renters")

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

@lang("customer.renters_third_party")

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

@lang("mof.guarantors")

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

@lang("transactions.rental_details")

@include('livewire.transaction.rental._rentalview')