Last active
February 4, 2023 13:38
-
-
Save rvibit/e0acc4a4d0f16e8345a3a39b30535d0a to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
use Illuminate\Support\Facades\Route; | |
/* | |
|-------------------------------------------------------------------------- | |
| Web Routes | |
|-------------------------------------------------------------------------- | |
| | |
| Here is where you can register web routes for your application. These | |
| routes are loaded by the RouteServiceProvider within a group which | |
| contains the "web" middleware group. Now create something great! | |
| | |
*/ | |
Route::view('/', 'welcome')->name('home')->middleware(['verify.shopify', 'billable']); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment