Fixed issue where CSS was not being passed to the ticket view
This commit is contained in:
parent
cc911f7344
commit
fe2c5d6223
|
|
@ -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') {
|
||||
|
|
|
|||
Loading…
Reference in New Issue