Verhuurder
|
|
Huurder
|
Naam:
|
Henk Pen verhuur B.V
|
{{ $rentRequest->rentalRequestUser->name }} {{ $rentRequest->rentalRequestUser->lastname }}
|
Adres:
|
{{ $rentRequest->camperOwner->profile->house_number }}
{{ $rentRequest->camperOwner->profile->streetname }}
|
{{ $rentRequest->rentalRequestUser->profile->house_number }}
{{ $rentRequest->rentalRequestUser->profile->streetname }}
|
Postcode:
|
{{ $rentRequest->camperOwner->profile->postalcode }}
|
{{ $rentRequest->rentalRequestUser->profile->postalcode }}
|
Plaats:
|
{{ $rentRequest->camperOwner->profile->city }}
|
{{ $rentRequest->rentalRequestUser->profile->city }}
|
E-mail / Tel.:
|
{{ $rentRequest->camperOwner->email }} / {{ $rentRequest->camperOwner->profile->phonenumber }}
|
{{ $rentRequest->rentalRequestUser->email }} /
{{ $rentRequest->rentalRequestUser->profile->phonenumber }}
|
Datum:
|
{{ $rentRequest->created_at->format('d-m-Y') }}
|
|
|
Betaaloverzicht huurovereenkomst voor: {{ $rentRequest->camper->title }}
|
Periode van {{ $rentRequest->from->format('d-m-Y') }} tot
{{ $rentRequest->untill->format('d-m-Y') }}
|
Totale huursom:
|
€
|
{{ number_format($rentRequest->day_price / 100, 2, ',', '.') }}
|
Bestaande uit:
|
€
|
|
Huurprijs:
|
€
|
{{ number_format($rentRequest->optional_discount / 100, 2, ',', '.') }}
|
Boekingskosten:
|
€
|
{{ number_format($rentRequest->booking_costs / 100, 2, ',', '.') }}
|
All-inclusive of comfort safe inventarispakket:
|
€
|
{{ number_format($rentRequest->inventory_package_cost / 100, 2, ',', '.') }}
|
@php
$btw = $rentRequest->camperOwner->profile->btw;
$fee_percentage = $rentRequest->camperOwner->fee_percentage;
// $total = $rentRequest->booking_costs + $rentRequest->cleaning_cost + $rentRequest->day_price - $rentRequest->optional_discount;
$total = $rentRequest->cleaning_cost + $rentRequest->day_price - $rentRequest->optional_discount;
$btwAmt = 0;
$totalExBtw = 0;
if ($btw) {
$btwAmt = round($total * (21 / 121), 2);
}
$totalExBtw = $total - $btwAmt;
@endphp
Totaal:
|
€
|
{{ number_format($total / 100, 2, ',', '.') }}
|
@if ($btw == 1)
Aandeel btw (21%) :
|
€
|
{{ number_format($btwAmt / 100, 2, ',', '.') }}
|
@endif
|
Fee Henk Pen {{ $fee_percentage }}% van de nachtprijs (totaal):
@php
$dayPrice = $rentRequest->day_price;
$perDayPrice = round($dayPrice * ($fee_percentage / 100), 2);
//$adminTotal = $perDayPrice + $rentRequest->booking_costs;
$adminTotal = $perDayPrice;
if ($btw) {
$btwPerDayPrice = round($perDayPrice * (21 / 121), 2);
$adminTotal = $adminTotal - $btwPerDayPrice;
}
@endphp
|
€
|
{{ number_format($perDayPrice / 100, 2, ',', '.') }}
|
@if ($btw == 1)
Aandeel btw (21%) :
|
€
|
{{ number_format($btwPerDayPrice / 100, 2, ',', '.') }}
|
Totaal exclusief BTW:
|
€
|
{{ number_format($adminTotal / 100, 2, ',', '.') }}
|
@else
Totaal:
|
€
|
{{ number_format($adminTotal / 100, 2, ',', '.') }}
|
@endif