@extends('layouts.app') @section('title', 'Prix (Manager)') @section('content')
Gérez la tarification de l'hostel.
| ÉLÉMENT | MODE | PRIX | VALIDITÉ | ACTIONS |
|---|---|---|---|---|
| {{ $price->priceable?->name ?? '—' }} ({{ $price->priceable_type }}) | {{-- Mode de tarification --}}{{ str_replace('_', ' ', $price->pricing_mode) }} | {{-- Prix HT / TTC --}}
{{ number_format($price->price_ttc, 3) }}
TTC
HT : {{ number_format($price->price_ht, 3) }}
|
{{-- Validité --}}
{{ $price->valid_from?->format('d/m/Y') ?? '—' }}
▶
{{ $price->valid_to?->format('d/m/Y') ?? '∞' }}
|
{{-- Actions --}}
|
|
💲
Aucun tarif défini.
Créer le premier tarif →
|
||||