Listings Management

Manage all property listings across the platform

@if (session()->has('success'))
{{ session('success') }}
@endif

Featured Listing Fee: RM {{ number_format($featuredFee, 2) }}

Hosts will be charged this fee when they mark their listing as featured. You can toggle featured status for free from this admin panel.

Showing {{ $listings->count() }} of {{ $listings->total() }} listings
@forelse($listings as $listing) @empty @endforelse
Listing Host Location Price/Day Status Featured Actions
@if($listing->images && count($listing->images) > 0) {{ $listing->title }} @else
@endif
{{ Str::limit($listing->title, 40) }}
{{ $listing->rentalType->name ?? 'N/A' }}
{{ $listing->host->name }}
{{ $listing->host->email }}
{{ $listing->location->name ?? 'N/A' }}
RM {{ number_format($listing->price_per_day, 2) }}
View

No listings found

Try adjusting your filters

@if($listings->hasPages())
{{ $listings->links() }}
@endif