Waiting for install

Scan to install on your iPhone

Point your iPhone camera at the QR code. Tap the link that surfaces, then tap Add to Apple Wallet. This page flips the moment Wallet registers the pass.

Download .pkpass or scan with your iPhone camera

About this pass

Event tickets can show a full-bleed background image with a small thumbnail, giving the pass a poster-like feel. Headers usually carry the event date and time.

How it’s built

A single fluent builder call generates the pass, signs it with your Apple Developer cert, and stores it in your database.

EventTicketPassBuilder::make()
    ->setOrganisationName(...)
    ->setSerialNumber($id)
    ->setDescription(...)
    ->addField('event', 'Laracon US 2026')
    ->setLogoImage(public_path('images/logo.png'))
    ->save();

See the source for this exact example in GenerateExampleEventTicket.php.