<?php
use Illuminate\Support\Facades\Route;
Route::post('checkout', 'PaymentController@create');
Route::post('shopify/checkout', 'ShopifyController@checkout')
->withoutMiddleware([\Illuminate\Foundation\Http\Middleware\ValidateCsrfToken::class])
->name('shopify.checkout');