Create storefront @php $prefill = $prefill ?? []; $createType = old('type', $prefill['type'] ?? $requestedType ?? \App\Models\QrCode::TYPE_SHOP); $prefillContent = []; if (!empty($prefill)) { $prefillContent = array_filter([ 'title' => $prefill['shop_title'] ?? null, 'sections' => $prefill['sections'] ?? null, 'accepts_payment' => $prefill['accepts_payment'] ?? true, ], fn ($v) => $v !== null); } @endphp
All storefronts

Create storefront

Pick what you're selling, then add your products, menu, or bookable services.

@if(!empty($prefill))
Prefilled from Ladill CRM. Review products and payment settings, then create your storefront.
@endif @if(session('error'))
{{ session('error') }}
@endif @if($errors->any())
    @foreach($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf

Storefront type

@foreach(\App\Support\Qr\QrTypeCatalog::all() as $key => $meta) @endforeach

Private name to find this storefront in your dashboard.

@include('merchant.storefronts.partials.editor-fields', ['content' => $prefillContent ?? [], 'catalog' => $catalog ?? []])