Arlyzatun
Explore posts from serversUnable 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
6 replies
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:
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:
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
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
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
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