Basilio German

Results 3 comments of Basilio German

@nam-co Yes you can, you need to change your `shop_auth_provider` to `shops` and add your new shop provider to config/auth.php like so: ``` 'providers' => [ 'users' => [ 'driver'...

There is a problem though, it also colors the label. Fixing...

Then in Kernel in middlewaregroups ``` 'shopify' => [ 'throttle:shopify', \App\Http\Middleware\EncryptCookies::class, \Illuminate\Cookie\Middleware\AddQueuedCookiesToResponse::class, \Illuminate\Session\Middleware\StartSession::class, \Illuminate\View\Middleware\ShareErrorsFromSession::class, // \App\Http\Middleware\VerifyCsrfToken::class, // Seems i can now exclude \Illuminate\Routing\Middleware\SubstituteBindings::class, \Osiset\ShopifyApp\Http\Middleware\IframeProtection::class, 'verify.shopify', ], ``` Now i don't...