@extends('layouts.dashboard') @section('content') @php /** * ONE SCREEN FOR A VENDOR PAYMENT: how it will be paid on the left, what is being paid on the right. * * The panel's checkout used to be two pages — a chooser, then a gateway page — because the gateway * session had to exist before the widget could mount, and it could not exist until a provider was * known. So picking PayPal cost a page load before anything could be typed. The session is now * opened when the owner PAYS (CampaignController::prepare), which removes the reason for the first * page: every tender fits on one screen, and a checkout that is merely LOOKED at opens nothing at * the gateway. * * This is the customer checkout's shape (views/public/checkout.php), not a new one — the same * .qm-pay-option rows, the same reveal-on-select, the same deferred Stripe element — so the two * halves of the product finally read alike. * * ONE