Arlyzatun
Arlyzatun
Explore posts from servers
FFilament
Created by Arlyzatun on 3/31/2025 in #❓┊help
Unable to locate file in Vite manifest: resources/css/filament/admin/theme.css.
this is my admin panel, this error occur only in production/staging when i comment out the viteTheme, but now the css doesnt apply in my page, i need this styling but how to fix that? whenever i comment out the viteTheme it will error
class AdminPanelProvider extends PanelProvider
{
public function panel(Panel $panel): Panel
{
return $panel
->default()
->id('admin')
->path('admin')
->login()
->colors([
'primary' => Color::Blue,
])
//->viteTheme('resources/css/filament/admin/theme.css')
->discoverResources(in: app_path('Filament/Resources'), for: 'App\\Filament\\Resources')
->discoverPages(in: app_path('Filament/Pages'), for: 'App\\Filament\\Pages')
->pages([
Pages\Dashboard::class,
])
->discoverWidgets(in: app_path('Filament/Widgets'), for: 'App\\Filament\\Widgets')
->widgets([
Widgets\AccountWidget::class,
Widgets\FilamentInfoWidget::class,
])
->middleware([
EncryptCookies::class,
AddQueuedCookiesToResponse::class,
StartSession::class,
AuthenticateSession::class,
ShareErrorsFromSession::class,
VerifyCsrfToken::class,
SubstituteBindings::class,
DisableBladeIconComponents::class,
DispatchServingFilamentEvent::class,
CheckFirstLogin::class,
])
->authMiddleware([
Authenticate::class,
RedirectAfterLogin::class,
])
->plugins([
\BezhanSalleh\FilamentShield\FilamentShieldPlugin::make()
]);
}
class AdminPanelProvider extends PanelProvider
{
public function panel(Panel $panel): Panel
{
return $panel
->default()
->id('admin')
->path('admin')
->login()
->colors([
'primary' => Color::Blue,
])
//->viteTheme('resources/css/filament/admin/theme.css')
->discoverResources(in: app_path('Filament/Resources'), for: 'App\\Filament\\Resources')
->discoverPages(in: app_path('Filament/Pages'), for: 'App\\Filament\\Pages')
->pages([
Pages\Dashboard::class,
])
->discoverWidgets(in: app_path('Filament/Widgets'), for: 'App\\Filament\\Widgets')
->widgets([
Widgets\AccountWidget::class,
Widgets\FilamentInfoWidget::class,
])
->middleware([
EncryptCookies::class,
AddQueuedCookiesToResponse::class,
StartSession::class,
AuthenticateSession::class,
ShareErrorsFromSession::class,
VerifyCsrfToken::class,
SubstituteBindings::class,
DisableBladeIconComponents::class,
DispatchServingFilamentEvent::class,
CheckFirstLogin::class,
])
->authMiddleware([
Authenticate::class,
RedirectAfterLogin::class,
])
->plugins([
\BezhanSalleh\FilamentShield\FilamentShieldPlugin::make()
]);
}
6 replies
FFilament
Created by Arlyzatun on 3/29/2025 in #❓┊help
Filament Shield: 403 Forbidden on Production but Works Fine Locally
Hi everyone, I need some help regarding an issue I’ve been facing with Filament Shield in a Laravel project. We’re using Filament Shield to handle permissions for our admin panel. On local development, everything works perfectly. After migrating the database, I run:
php artisan shield:install
php artisan shield:install
It prompts me to input name, email, and password for a super admin user. Once that's done, I can log in and access all admin resources via /admin as expected. However, in production, I followed the exact same steps:
Run php artisan migrate

Run php artisan shield:install (filled in user details)
Run php artisan migrate

Run php artisan shield:install (filled in user details)
Login using the generated user But when I try to access /admin, I get a 403 Forbidden error. I'm guessing it has something to do with the role/permission assignment or caching, but I’m not sure.
13 replies
FFilament
Created by Arlyzatun on 3/28/2025 in #❓┊help
Error npm run build
No description
22 replies
FFilament
Created by Arlyzatun on 3/24/2025 in #❓┊help
Error 503 service unavailable
No description
5 replies
FFilament
Created by Arlyzatun on 3/21/2025 in #❓┊help
Middleware auth + custom in Filament Blade
can i ask something differnt? i have some page /building/id /my/transaction /my/booking btw, for now, i will stay on /admin/login as login page route i want to make a middleware for check does user have change their default password? if not they will redirect ot reset-password page, if user already change their default password, they can acccess di page
class CheckFirstLogin
{
public function handle(Request $request, Closure $next)
{
$user = Auth::user();

if ($user && $user->is_first == 1) {
Password::sendResetLink(['email' => $user->email]);
return redirect('/reset-password-send')->with('status', 'Silakan cek email Anda untuk reset password.');
}

return $next($request);
}
}
class CheckFirstLogin
{
public function handle(Request $request, Closure $next)
{
$user = Auth::user();

if ($user && $user->is_first == 1) {
Password::sendResetLink(['email' => $user->email]);
return redirect('/reset-password-send')->with('status', 'Silakan cek email Anda untuk reset password.');
}

return $next($request);
}
}
how do i implement this middleware in filament, i also want to check if user already login or not, if they didnt login yet, the will redirected to login page
13 replies
FFilament
Created by Arlyzatun on 3/21/2025 in #❓┊help
i want to change routes login in filament
No description
9 replies
PPrisma
Created by Arlyzatun on 1/3/2025 in #help-and-questions
Handle auto filter base on status of model (prisma and nestjs)
In my project, I have some roles, they are Student, Lecture, and Admin. I also have some model with status. Status = enum(Public, Private, Archive) Role= enum(Student, Private,Public) I have University and Course model with their own status, I want the user with role Student only have access for University/Course with Public status. Lecture also only have access to Course with Public and Private Status. If I only have 1 controller/route for all roles, how I can implement this requirement with good performance? I was able to create a middleware for every routes to determine the process base on role but in middleware I need to make a query select, and that is my concern because it make me select the item more than one, (1 for middleware, >=1 in service)
4 replies