@extends('layouts.sidebar') @section('content')
Penalties and Additional Fees
Add Additional Fee
Billing ID
Charge Type
Amount (PHP)
Notes
Date of Payable
Actions
@endsection
@section('scripts')
Additional Fee Form
×
@csrf
Billing ID
Select Billing
@foreach ($payments as $payment)
Billing No. {{ $payment->payment_id }}, for {{ $payment->lease->client->owners_name }}, Billing Date {{ \Carbon\Carbon::parse($payment->payment_date)->format('F j, Y') }}, Unit Name: {{ $payment->lease->unit->property->property_name }}{{ $payment->lease->unit->unit_name }},
@endforeach
Charge Type
Select a Charge Type
Storage Fee (if confiscated items are placed in storage)
Annual Transportation Fee (if items are moved to storage)
Admin Fee (if there is a change of mind and deposit is refunded)
Janitorial Fee (if the unit is left dirty)
Revert Back (if there is an excess allocation)
Shared Expense (tenant & landlord, 50%)
Miscellaneous Income (CR fee, temporary lease, mango harvest, scrap)
Other (Specify below)
Amount (PHP)
Notes
Date of Payable
Submit
@foreach ($additionalFees as $additionalfee)
Edit Additional Fee
×
@csrf @method('PUT')
Billing ID
Select Billing
@foreach ($payments as $payment)
billing_id == $payment->payment_id ? 'selected' : '' }}> Billing No. {{ $payment->payment_id }}, for {{ $payment->lease->client->owners_name }}, Billing Date {{ \Carbon\Carbon::parse($payment->payment_date)->format('F j, Y') }}, Unit Name: {{ $payment->lease->unit->property->property_name }}{{ $payment->lease->unit->unit_name }}
@endforeach
Charge Type
Select a Charge Type
charge_type == 'storage_fee' ? 'selected' : '' }}>Storage Fee (if confiscated items are placed in storage)
charge_type == 'annual_transportation_fee' ? 'selected' : '' }}> Annual Transportation Fee (if items are moved to storage)
charge_type == 'admin_fee' ? 'selected' : '' }}>Admin Fee (if there is a change of mind and deposit is refunded)
charge_type == 'janitorial_fee' ? 'selected' : '' }}>Janitorial Fee (if the unit is left dirty)
charge_type == 'revert_back' ? 'selected' : '' }}>Revert Back (if there is an excess allocation)
charge_type == 'shared_expense' ? 'selected' : '' }}>Shared Expense (tenant & landlord, 50%)
charge_type == 'miscellaneous_income' ? 'selected' : '' }}> Miscellaneous Income (CR fee, temporary lease, mango harvest, scrap)
charge_type == 'custom' ? 'selected' : '' }}> Other (Specify below)
Amount (PHP)
Notes
{{ $additionalfee->notes }}
Date of Payable
Update
Confirm Delete
×
Are you sure you want to delete this Fee?
Cancel
@csrf @method('DELETE')
Delete
@endforeach @endsection