Strange Issue with Filament and API Routes

Hi, I have encountered strange issue when i update profile password and press button in UserMenu to signout i get Route login not defined error
->withRouting(
web: __DIR__.'/../routes/web.php',
api: __DIR__.'/../routes/api.php',
commands: __DIR__.'/../routes/console.php',
channels: __DIR__.'/../routes/channels.php',
health: '/up',
then: function () {
Route::middleware('api')
->name('api.')
->prefix('api/v1')
->group(base_path('routes/api_v1.php'));
}
)


api.php

<?php

use App\Http\Controllers\Api\AuthController;
use Illuminate\Support\Facades\Route;

Route::prefix('api')
->name('api.')
->group(function () {
Route::post('/login', [AuthController::class, 'login'])->name('login');
Route::post('/logout', [AuthController::class, 'logout'])->name('logout');
});
->withRouting(
web: __DIR__.'/../routes/web.php',
api: __DIR__.'/../routes/api.php',
commands: __DIR__.'/../routes/console.php',
channels: __DIR__.'/../routes/channels.php',
health: '/up',
then: function () {
Route::middleware('api')
->name('api.')
->prefix('api/v1')
->group(base_path('routes/api_v1.php'));
}
)


api.php

<?php

use App\Http\Controllers\Api\AuthController;
use Illuminate\Support\Facades\Route;

Route::prefix('api')
->name('api.')
->group(function () {
Route::post('/login', [AuthController::class, 'login'])->name('login');
Route::post('/logout', [AuthController::class, 'logout'])->name('logout');
});
Any idea why it is mixing them up?
9 Replies
awcodes
awcodes4w ago
What does filament have to do with an api? Filament doesn’t have anything to do with rest api.
Señor Nikola
Señor NikolaOP4w ago
Not directly with api, but evertime i update profile and try to logout of filament admin panel it throws that login route has not been defined.. It started happening since I have added api routes.. Hence question.. Maybe i formatted question wrong
awcodes
awcodes4w ago
Your api should not be returning a redirect. But that’s not a filament issue.
Kaesa Lyrih
Kaesa Lyrih4w ago
Maybe cause route name login not found.
//routes/web.php
Route::get('/login', fn() => redirect()->route('filament.admin.auth.login'))->name('login');
//routes/web.php
Route::get('/login', fn() => redirect()->route('filament.admin.auth.login'))->name('login');
awcodes
awcodes4w ago
Sure, but apis should never return a redirect
Señor Nikola
Señor NikolaOP4w ago
Yeah agreed, api is not returning redirect. But somehow i am redirected to the api/login route, without mentioning redirect anywhere in code..
awcodes
awcodes4w ago
A rest api auth flow has nothing to do with filament. What I’m saying is the panel doesn’t make sense in the context of a rest api. So if you’re getting a login or logout error, it’s because you aren’t handling the authentication/authorization correctly. Nothing to do with filament. Laravel sanctum might be what you are looking for. But filament has no concept of rest api. It’s just laravel at that point.
Señor Nikola
Señor NikolaOP4w ago
Thanks awcodes, will continue to debug..
Dennis Koch
Dennis Koch4w ago
Check the answer from Kaesa Laravel expects a route called login after logout.

Did you find this page helpful?