@extends('layouts.app') @section('title', 'Rooms for Rent in Los Angeles, CA | ShareSpace') @section('meta', 'Browse ' . $total . ' rooms, studios and apartments for rent in Los Angeles. Filter by price, type, move-in date and amenities.') @section('content')
{{-- ── Search bar ─────────────────────────────────────────────────────── --}}
{{-- ── View toggle + sort ─────────────────────────────────────────────── --}}
{{ $total }} {{ Str::plural('room', $total) }} in Los Angeles
Sort by:
{{-- ── LIST VIEW ──────────────────────────────────────────────────────── --}}
@if($listings->count())
@foreach($listings as $l)
@if($l->badge === 'new') New @elseif($l->badge === 'discount' && $l->discount_percent) -{{ $l->discount_percent }}% @endif
{{ $l->icon }}
${{ number_format($l->price) }} /mo @if($l->old_price)${{ number_format($l->old_price) }}@endif
{{ $l->type }}
{{ $l->title }}
📍 {{ $l->location }}
🛏 {{ $l->rooms }} {{ Str::plural('room', $l->rooms) }} @if($l->size)📐 {{ $l->size }}@endif @if($l->min_stay)⏳ Min. {{ $l->min_stay }}@endif
@foreach($l->amenities ?? [] as $a){{ $a }}@endforeach
Available: {{ $l->avail_label }}
@endforeach
{{-- Pagination --}} @else

No rooms match your filters

Try widening your price range or clearing some filters.
Reset all filters

@endif
{{-- ── MAP VIEW ─────────────────────────────────────────────────────────── --}}

Rooms for Rent in Los Angeles, CA

Los Angeles is known for its chilled-out, laid-back vibe. This eclectic city — home to celebrities, sunshine, and the iconic Hollywood sign — has a lot to offer. As the second-biggest city in the United States, rooms for rent in Los Angeles are in abundance. From beachside Santa Monica to vibrant Silver Lake, Los Feliz, and the Arts District, LA has a vast amount of living options to fit every lifestyle and budget.

@endsection @push('scripts') @endpush