Showroom Management
{{-- Header --}}

Showroom Locations

Manage physical store locations displayed on the homepage

Add Showroom
@if(session('success'))
{{ session('success') }}
@endif {{-- Table Container --}}
@forelse($showrooms as $showroom)
{{ substr($showroom->name, 0, 1) }}

{{ $showroom->name }}

Order: #{{ $showroom->order }} — {{ $showroom->status ? 'ACTIVE' : 'HIDDEN' }}

@csrf @method('DELETE')

Showroom Address

{{ $showroom->address }}

Status

{{ $showroom->status ? 'VISIBLE' : 'HIDDEN' }}
@empty
No showrooms found
@endforelse