deplay phase 1
This commit is contained in:
parent
e3dc1afd8e
commit
5a7478907e
68 changed files with 2831 additions and 818 deletions
|
|
@ -45,7 +45,7 @@
|
|||
<p><strong>Kunde: </strong>
|
||||
{{ $customer_mail->customer->salutation->name }} {{ $customer_mail->customer->title }} {{ $customer_mail->customer->firstname }} {{ $customer_mail->customer->name }}
|
||||
@if($customer_mail->booking)
|
||||
({{$customer_mail->booking->inquiry_id}})
|
||||
({{$customer_mail->booking->lead_id}})
|
||||
@endif
|
||||
</p>
|
||||
@endif
|
||||
|
|
|
|||
18
resources/views/emails/exception.blade.php
Normal file
18
resources/views/emails/exception.blade.php
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
<!DOCTYPE html
|
||||
PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||
<title>Exception — {{ config('app.name') }}</title>
|
||||
<style type="text/css">
|
||||
{!! $css !!}
|
||||
</style>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
{!! $content !!}
|
||||
</body>
|
||||
|
||||
</html>
|
||||
|
|
@ -22,7 +22,7 @@
|
|||
{{-- @endif --}}
|
||||
</td>
|
||||
<td align="left" style="color: #000; padding:0.5rem">
|
||||
Buchungsnummer: <strong>{{ $booking->inquiry_id }}</strong><br />
|
||||
Buchungsnummer: <strong>{{ $booking->lead_id }}</strong><br />
|
||||
Buchungsdatum: <strong>{{ _format_date($booking->booking_date) }}</strong><br /><br />
|
||||
Reisetermin: <strong>{{ _format_date($booking->start_date) }} -
|
||||
{{ _format_date($booking->end_date) }}</strong><br />
|
||||
|
|
|
|||
|
|
@ -35,7 +35,7 @@
|
|||
</tr>
|
||||
<tr>
|
||||
<td>Buchungsnummer:</td>
|
||||
<td><strong>{{ $booking->inquiry_id }}</strong></td>
|
||||
<td><strong>{{ $booking->lead_id }}</strong></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Buchungsdatum:</td>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue