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

Mes enceintes

+ Ajouter
@if(session('success'))

{{ session('success') }}

@endif @forelse($units as $unit)
{{ $unit->number }}

{{ $unit->name }}

{{ \App\Models\ColdStorageUnit::$typeLabels[$unit->type] ?? $unit->type }} · @if($unit->target_temp_min !== null) {{ $unit->target_temp_min }} / {{ $unit->target_temp_max }} °C @else ≤ {{ $unit->target_temp_max }} °C @endif

Modifier
@csrf @method('DELETE')
@empty

Aucune enceinte configurée.

Ajouter ma première enceinte
@endforelse @if($units->count() > 0)
Faire les relevés du jour →
@endif
@endsection