@extends('layouts.app') @section('title', 'Options') @section('content')

Options

@include('rooms._submenu', ['view' => null, 'canViewMine' => $canViewMine])
@if($canViewMine) Ajouter une option @endif
@if(request()->has('room_id')) Réinitialiser @endif
@forelse($options as $option) @empty @endforelse
Salle Nom Description Prix Statut Actions
{{ $option->room->name }} {{ $option->name }} {{ Str::limit($option->description, 50) }} {{ currency($option->price, $option->room->owner) }} {{ $option->active ? 'Active' : 'Inactive' }}
Modifier
@csrf @method('DELETE')
Aucune option trouvée
{{ $options->links() }}
@endsection