Attendize/resources/views/Public/ViewEvent/Partials/EventViewOrderSection.blade...

294 lines
12 KiB
PHP

<style>
/*@todo This is temp - move to styles*/
h3 {
border: none !important;
font-size: 30px;
text-align: center;
margin: 0;
margin-bottom: 30px;
letter-spacing: .2em;
font-weight: 200;
}
.order_header {
text-align: center
}
.order_header .massive-icon {
display: block;
width: 120px;
height: 120px;
font-size: 100px;
margin: 0 auto;
color: #63C05E;
}
.order_header h1 {
margin-top: 20px;
text-transform: uppercase;
}
.order_header h2 {
margin-top: 5px;
font-size: 20px;
}
.order_details.well, .offline_payment_instructions {
margin-top: 25px;
background-color: #FCFCFC;
line-height: 30px;
text-shadow: 0 1px 0 rgba(255,255,255,.9);
color: #656565;
overflow: hidden;
}
.ticket_download_link {
border-bottom: 3px solid;
}
</style>
<section id="order_form" class="container">
<div class="row">
<div class="col-md-12 order_header">
<span class="massive-icon">
<i class="ico ico-checkmark-circle"></i>
</span>
<h1>{{ @trans("Public_ViewEvent.thank_you_for_your_order") }}</h1>
<h2>
{{ @trans("Public_ViewEvent.your") }}
<a class="ticket_download_link"
href="{{ route('showOrderTickets', ['order_reference' => $order->order_reference] ).'?download=1' }}">
{{ @trans("Public_ViewEvent.tickets") }}</a> {{ @trans("Public_ViewEvent.confirmation_email") }}
</h2>
</div>
</div>
<div class="row">
<div class="col-md-12">
<div class="content event_view_order">
@if($event->post_order_display_message)
<div class="alert alert-dismissable alert-info">
{{ nl2br(e($event->post_order_display_message)) }}
</div>
@endif
<div class="order_details well">
<div class="row">
<div class="col-sm-4 col-xs-6">
<b>@lang("Public_ViewEvent.first_name")</b><br> {{$order->first_name}}
</div>
<div class="col-sm-4 col-xs-6">
<b>@lang("Public_ViewEvent.last_name")</b><br> {{$order->last_name}}
</div>
<div class="col-sm-4 col-xs-6">
<b>@lang("Public_ViewEvent.amount")</b><br> {{$order->event->currency_symbol}}{{number_format($order->total_amount, 2)}}
@if($event->organiser->charge_tax)
<small>{{ $orderService->getVatFormattedInBrackets() }}</small>
@endif
</div>
<div class="col-sm-4 col-xs-6">
<b>@lang("Public_ViewEvent.reference")</b><br> {{$order->order_reference}}
</div>
<div class="col-sm-4 col-xs-6">
<b>@lang("Public_ViewEvent.date")</b><br> {{$order->created_at->toDateTimeString()}}
</div>
<div class="col-sm-4 col-xs-6">
<b>@lang("Public_ViewEvent.email")</b><br> {{$order->email}}
</div>
</div>
</div>
@if(!$order->is_payment_received)
<h3>
@lang("Public_ViewEvent.payment_instructions")
</h3>
<div class="alert alert-info">
@lang("Public_ViewEvent.order_awaiting_payment")
</div>
<div class="offline_payment_instructions well">
{!! Markdown::parse($event->offline_payment_instructions) !!}
</div>
@endif
<h3>
@lang("Public_ViewEvent.order_items")
</h3>
<div class="table-responsive">
<table class="table table-hover">
<thead>
<tr>
<th>
@lang("Public_ViewEvent.ticket")
</th>
<th>
@lang("Public_ViewEvent.quantity_full")
</th>
<th>
@lang("Public_ViewEvent.price")
</th>
<th>
@lang("Public_ViewEvent.booking_fee")
</th>
<th>
@lang("Public_ViewEvent.total")
</th>
</tr>
</thead>
<tbody>
@foreach($order->orderItems as $order_item)
<tr>
<td>
{{$order_item->title}}
</td>
<td>
{{$order_item->quantity}}
</td>
<td>
@if((int)ceil($order_item->unit_price) == 0)
@lang("Public_ViewEvent.free")
@else
{{money($order_item->unit_price, $order->event->currency)}}
@endif
</td>
<td>
@if((int)ceil($order_item->unit_price) == 0)
-
@else
{{money($order_item->unit_booking_fee, $order->event->currency)}}
@endif
</td>
<td>
@if((int)ceil($order_item->unit_price) == 0)
@lang("Public_ViewEvent.free")
@else
{{money(($order_item->unit_price + $order_item->unit_booking_fee) * ($order_item->quantity), $order->event->currency)}}
@endif
</td>
</tr>
@endforeach
<tr>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
<b>@lang("Public_ViewEvent.sub_total")</b>
</td>
<td colspan="2">
{{ $orderService->getOrderTotalWithBookingFee(true) }}
</td>
</tr>
@if($event->organiser->charge_tax)
<tr>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
{{$event->organiser->tax_name}}
</td>
<td colspan="2">
{{ $orderService->getTaxAmount(true) }}
</td>
</tr>
@endif
<tr>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
<b>Total</b>
</td>
<td colspan="2">
{{ $orderService->getGrandTotal(true) }}
</td>
</tr>
@if($order->is_refunded || $order->is_partially_refunded)
<tr>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
<b>@lang("Public_ViewEvent.refunded_amount")</b>
</td>
<td colspan="2">
{{money($order->amount_refunded, $order->event->currency)}}
</td>
</tr>
<tr>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
<b>@lang("Public_ViewEvent.total")</b>
</td>
<td colspan="2">
{{money($order->total_amount - $order->amount_refunded, $order->event->currency)}}
</td>
</tr>
@endif
</tbody>
</table>
</div>
<h3>
@lang("Public_ViewEvent.order_attendees")
</h3>
<div class="table-responsive">
<table class="table table-hover table-striped">
<tbody>
@foreach($order->attendees as $attendee)
<tr>
<td>
{{$attendee->first_name}}
{{$attendee->last_name}}
(<a href="mailto:{{$attendee->email}}">{{$attendee->email}}</a>)
</td>
<td>
{{{$attendee->ticket->title}}}
</td>
<td>
@if($attendee->is_cancelled)
@lang("Public_ViewEvent.attendee_cancelled")
@endif
</td>
</tr>
@endforeach
</tbody>
</table>
</div>
</div>
</div>
</div>
</section>