@extends('layouts.app') @section('title', 'Settings') @section('navigation') Dashboard Settings Events Widgets @endsection @section('content')

EventBookings API Settings

Connect your EventBookings account to start displaying events on your Shopify store.

@csrf
Found in your EventBookings account under API Access
Keep this secret secure and don't share it publicly
@if($storeSetting && $storeSetting->hasValidCredentials()) @endif
@if($storeSetting && $storeSetting->is_connected)

Connection Status

✓ Connected to EventBookings
@if($storeSetting->org_uuid)

Organization UUID: {{ $storeSetting->org_uuid }}

@endif @if($storeSetting->token_expires_at)

Token Expires: {{ $storeSetting->token_expires_at->format('Y-m-d H:i:s') }}

@if($storeSetting->isTokenExpiringSoon())
Your access token is expiring soon. It will be automatically refreshed when needed.
@endif @endif
@csrf
@endif

How to get your API credentials

  1. Log in to your EventBookings account
  2. Go to Settings → API Access
  3. Create a new API client or use an existing one
  4. Copy the Client ID and Client Secret
  5. Paste them in the form above

Note: Your Client Secret will be encrypted and stored securely.

@endsection @push('scripts') @endpush