From e4462b0cfaab5942cc9c63689f2ea43fa446353c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gi=C3=B2=20Diani?= Date: Fri, 17 Jan 2025 15:13:41 +0100 Subject: [PATCH 1/2] =?UTF-8?q?Fehlermeldung,=20wenn=20keine=20Daten=20f?= =?UTF-8?q?=C3=BCr=20Property=20vorhanden.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- dashboard/resources/views/property.blade.php | 12 ++++++-- dashboard/routes/web.php | 30 +++++++++++--------- 2 files changed, 26 insertions(+), 16 deletions(-) diff --git a/dashboard/resources/views/property.blade.php b/dashboard/resources/views/property.blade.php index 32a3186..bc17630 100644 --- a/dashboard/resources/views/property.blade.php +++ b/dashboard/resources/views/property.blade.php @@ -24,13 +24,18 @@ @endsection @section('main') +@if(!isset($propertyCapacities['capacities'])) +
+ Für dieses Mietobjekt sind keine Daten vorhanden. +
+@else

- Kalenderansicht der Belegung am {{ $startDate }} + Kalenderansicht der Verfügbarkeit am {{ $startDate }}