@extends('backend.manager.layouts.manager-app') @section('title', 'Stripe Connect') @push('style') @endpush @section('content') {{-- PAGE-HEADER --}} {{-- PAGE-HEADER --}} @if(session('success')) @endif @if(session('error')) @endif

Stripe Connect

Link your store to Stripe to receive payouts from ticket sales.

{{-- Status badge --}} @php $status = $store->stripe_account_status ?? 'pending'; $hasAccount = ! empty($store->stripe_account_id); @endphp @if(! $hasAccount)
Not connected — set up Stripe to receive payouts
@elseif($status === 'active')
Connected & active — payouts enabled
@else
Pending — onboarding incomplete
@endif {{-- Store info rows --}}
Store {{ $store->name }}
Email {{ $store->store_email ?? '—' }}
@if($hasAccount)
Stripe Account {{ $store->stripe_account_id }}
@endif
{{-- Action button --}} @if($status !== 'active')
@csrf

You'll be redirected to Stripe to complete your account setup.
This is required before payouts can be processed.

@else

✓ Your store is fully connected. Payouts will be processed automatically.

@endif
@endsection