Back to all passes
Boarding pass
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
Boarding passes use the airline layout, with prominent departure and destination codes, a footer image strip, and PDF417 or Aztec barcodes that gate scanners can read at speed.
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.
AirlinePassBuilder::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 GenerateExampleBoardingPass.php.