krekas
krekas
FFilament
Created by yohanan on 1/20/2025 in #❓┊help
Tailwind css not working on full-page livewire component
it can
24 replies
FFilament
Created by yohanan on 1/20/2025 in #❓┊help
Tailwind css not working on full-page livewire component
in this case you need to learn more about livewire and laravel
24 replies
FFilament
Created by yohanan on 1/20/2025 in #❓┊help
Tailwind css not working on full-page livewire component
then you are doing everything wrong. Nothing works from the filament outside of the panel until you tell it
24 replies
FFilament
Created by yohanan on 1/20/2025 in #❓┊help
Tailwind css not working on full-page livewire component
This page. Is it also in a filament panel or outside?
24 replies
FFilament
Created by yohanan on 1/20/2025 in #❓┊help
Tailwind css not working on full-page livewire component
wait, what this have to do with filament here? that's the first important question
24 replies
FFilament
Created by frame on 1/10/2025 in #❓┊help
Query string null in a relationmanager
in your relation manager if you would add property $group and set it as Url livewire attribute. does it work then?
use Livewire\Attributes\Url;

#[Url]
public int|null $group = null;
use Livewire\Attributes\Url;

#[Url]
public int|null $group = null;
and call it where needed like $this->group then
13 replies
FFilament
Created by Serg on 1/13/2025 in #❓┊help
Import Job does not stop after exception
open an issue on github
2 replies
FFilament
Created by frame on 1/10/2025 in #❓┊help
Query string null in a relationmanager
you could maybe get group from a owner record
13 replies
FFilament
Created by frame on 1/10/2025 in #❓┊help
Query string null in a relationmanager
does group belong to the record?
13 replies
FFilament
Created by frame on 1/10/2025 in #❓┊help
Query string null in a relationmanager
still curious what is that group, where it comes from and what you are trying to do
13 replies
FFilament
Created by frame on 1/10/2025 in #❓┊help
Query string null in a relationmanager
what's this group is in url? where it comes from?
13 replies
FFilament
Created by Nobody on 12/16/2024 in #❓┊help
Is It Possible to Use a Single Login URL for All Roles in Filament Shield?
reposone login works when user logs in first time not when returns
28 replies
FFilament
Created by Nobody on 12/16/2024 in #❓┊help
Is It Possible to Use a Single Login URL for All Roles in Filament Shield?
I think middlewware is the aproach here. With a simple check and redirect
if (auth()->check() && auth()->user()->is_admin) {
return redirect()->to(Dashboard::getUrl(panel: 'admin'));
}
if (auth()->check() && auth()->user()->is_admin) {
return redirect()->to(Dashboard::getUrl(panel: 'admin'));
}
28 replies
FFilament
Created by Nobody on 12/16/2024 in #❓┊help
Is It Possible to Use a Single Login URL for All Roles in Filament Shield?
lol
28 replies
FFilament
Created by Nobody on 12/16/2024 in #❓┊help
Is It Possible to Use a Single Login URL for All Roles in Filament Shield?
did you add a simple middleware for that or found a better way?
28 replies
FFilament
Created by namrata on 12/16/2024 in #❓┊help
Spatie Media Library
don't forget to set correct APP_URL in .env
24 replies
FFilament
Created by namrata on 12/16/2024 in #❓┊help
Spatie Media Library
No description
24 replies
FFilament
Created by namrata on 12/16/2024 in #❓┊help
Spatie Media Library
Let filament handle everything
SpatieMediaLibraryFileUpload::make('data.media')
->multiple()
->model($this->user)
->collection('users'),
SpatieMediaLibraryFileUpload::make('data.media')
->multiple()
->model($this->user)
->collection('users'),
24 replies
FFilament
Created by namrata on 12/16/2024 in #❓┊help
Spatie Media Library
adjust to your needs
24 replies