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

Prix

Gérez la tarification de base et les tarifs saisonniers de vos chambres.

Ajouter un tarif
@forelse($prices as $price) @empty @endforelse
CHAMBRE PRIX VALIDITÉ STATUT ACTIONS
{{ $price->room->name }} {{ number_format($price->price_amount, 3) }} {{ $price->currency }} @if($price->valid_from || $price->valid_to)
{{ $price->valid_from?->format('d/m/Y') ?? '—' }} {{ $price->valid_to?->format('d/m/Y') ?? '∞' }}
@else Permanent @endif
{{ $price->is_active ? '✅ Actif' : 'Inactif' }} @if(!$price->is_active) @endif
💲
Aucun tarif n'a été défini.
Créer votre premier tarif
@include('partials.delete-script') @endsection