<?php

use App\Http\Controllers\Billing\StripeWebhookController;
use Illuminate\Support\Facades\Route;
use Inertia\Inertia;

Route::domain(config('app.central_domain', parse_url(config('app.url'), PHP_URL_HOST)))
    ->group(function () {
        Route::get('/', fn () => Inertia::render('Welcome'))->name('central.home');
    });

Route::post('/stripe/webhook', [StripeWebhookController::class, 'handleWebhook'])
    ->name('cashier.webhook');
