#Laravel Spark Billing Portal Route not working
8 messages · Page 1 of 1 (latest)
Route::get('/', function () {
return Inertia::render('Welcome', [
'canLogin' => Route::has('login'),
'canRegister' => Route::has('register'),
'laravelVersion' => Application::VERSION,
'phpVersion' => PHP_VERSION,
]);
});
Route::middleware('auth')->group(function () {
Route::get('/profile', [ProfileController::class, 'edit'])->name('profile.edit');
Route::patch('/profile', [ProfileController::class, 'update'])->name('profile.update');
Route::delete('/profile', [ProfileController::class, 'destroy'])->name('profile.destroy');
});
The Spark service provider registers their own routes, they aren't added to your web.php routes
im usign psr4 to import this package, where is the directory of this routes?
i have the api routes only
@spice dagger