Rental Types & Configuration

Manage rental types, add-ons, and amenities

Back to Dashboard
@if (session()->has('message'))
{{ session('message') }}
@endif

{{ $editingId ? 'Edit' : 'Add New' }} Rental Type

@error('name') {{ $message }} @enderror
@error('description') {{ $message }} @enderror
@if($editingId) @endif

Existing Rental Types

@forelse($rentalTypes as $type) @empty @endforelse
Name Slug Description Listings Actions
{{ strtoupper(substr($type->name, 0, 1)) }}
{{ $type->name }}
{{ $type->slug }} {{ $type->description ?? '-' }} {{ $type->listings_count }} Listings

No rental types yet