Fixed issue where CSS was not being passed to the ticket view

This commit is contained in:
Dave Earley 2016-05-21 00:09:34 +01:00
parent cc911f7344
commit fe2c5d6223
1 changed files with 3 additions and 0 deletions

View File

@ -673,6 +673,9 @@ class EventCheckoutController extends Controller
'event' => $order->event,
'tickets' => $order->event->tickets,
'attendees' => $order->attendees,
'css' => file_get_contents(public_path('assets/stylesheet/ticket.css')),
'image' => base64_encode(file_get_contents(public_path($order->event->organiser->full_logo_path))),
];
if ($request->get('download') == '1') {