ticket fix

This commit is contained in:
merdan 2019-12-23 17:43:02 +05:00
parent 4a4912fb0e
commit 3c31bad114
2 changed files with 9 additions and 2 deletions

View File

@ -55,6 +55,13 @@ class SettingsSeeder extends Seeder
'value' => 'twitter.com',
'field' => '{"name":"value","label":"Value","type":"text"}',
'active' => 1,
],[
'key' => 'ticket_text',
'name' => 'Text on ticket',
'description' => 'Text that will be printed on tickets',
'value' => 'twitter.com',
'field' => '{"name":"value","label":"Value","type":"text"}',
'active' => 1,
],[
'key' => 'cinema_category_id',
'name' => 'Cinema category Id',

View File

@ -80,8 +80,8 @@
<tr>
<td style="padding: 20px; vertical-align: top">
<p style="margin-bottom: 5px !important;"><span class="text-muted">Мероприятие:</span> <b>{{$event->title}}</b></p>
<p style="margin-bottom: 5px !important;"><span class="text-muted">Организатор:</span> <b>{{$event->venue->venue_name}}</b></p>
<p style="margin-bottom: 5px !important;"><span class="text-muted">Дата и время:</span> <b>{{$attendee->ticket->ticket_date->format('d.m.Y HH:ss')}}</b></p>
<p style="margin-bottom: 5px !important;"><span class="text-muted">Площадка:</span> <b>{{$event->venue->venue_name}}</b></p>
<p style="margin-bottom: 5px !important;"><span class="text-muted">Дата и время:</span> <b>{{$attendee->ticket->ticket_date->format('d.m.Y h:i')}}</b></p>
<p style="margin-bottom: 5px !important;"><span class="text-muted">ФИО:</span> <b>{{$attendee->first_name.' '.$attendee->last_name}}</b></p>
<p style="margin-bottom: 5px !important;"><span class="text-muted">Тип билета:</span> <b>{{$attendee->ticket->title}}</b></p>
<p style="margin-bottom: 5px !important;"><span class="text-muted">Место:</span> <b>{{$attendee->seat_no}}</b></p>