migration

This commit is contained in:
2026-01-07 22:18:43 +00:00
parent 8d681da7a1
commit 66cddf3fb2
29 changed files with 2250 additions and 638 deletions

View File

@@ -0,0 +1,19 @@
<!DOCTYPE html>
<html>
<head>
<title>Счёт {{ $invoice->id }}</title>
</head>
<body>
<h1>Счёт {{ $invoice->id }}</h1>
<p>Дата выписки: {{ $invoice->issued_at->format('d.m.Y') }}</p>
<p>Срок оплаты: {{ $invoice->due_date->format('d.m.Y') }}</p>
<h2>Бронирование</h2>
<p>Гость: {{ $booking->guest_name }}</p>
<p>Тип номера: {{ $roomType->name }}</p>
<p>Даты: {{ $booking->check_in }} {{ $booking->check_out }}</p>
<h2>Сумма</h2>
<p>{{ number_format($invoice->amount, 2, ',', ' ') }} </p>
</body>
</html>