kokpithua
Filtering many to many relations
Does anyone know how to filter based on two tables with a many to many relations? I keep geeting the following error
SQLSTATE[42S22]: Column not found: 1054 Unknown column 'tags' in 'where clause'
SELECT
count(*) AS aggregate
FROM
tasks
WHERE
(tags
IN (2))27 replies
Abstract methods in models
I am trying to modify my project to allow all users that have @tribes.work.com. Whenever i try to login however i get the following error
Class App\Models\User contains 1 abstract method and must therefore be declared abstract or implement the remaining methods (Filament\Models\Contracts\FilamentUser::canAccessPanel). Anyone have any solutions?
8 replies