Units for Property: {{ $selectedProperty?->name ?? 'N/A' }}

@if($units->count() > 0)
@foreach($units as $unit) @endforeach
Unit Name Bedroom Kitchen Bath Rent Deposit Late Fee Notes
{{ $unit->name }} {{ $unit->bedroom }} {{ $unit->kitchen }} {{ $unit->bath }} {{ $unit->rent }} ({{ ucfirst($unit->rent_type) }}) {{ $unit->deposit_amount }} ({{ $unit->deposit_type }}) {{ $unit->late_fee_amount }} ({{ $unit->late_fee_type }}) {{ $unit->notes }}
@else

No units found for this property.

@endif
{{-- Include your modal here --}} @include('admin.units.create_modal')