ronssij
ronssij
FFilament
Created by Stormageddon, Dark Lord of All on 6/26/2024 in #❓┊help
import job failing continuously
No description
2 replies
FFilament
Created by ronssij on 6/13/2024 in #❓┊help
Shared panel session
Hi guys sorry for the late reply on this thread. In my case both are admin users but they vary on roles. What I did was the AdminPanelProvider will be the default provider and login() is enable on the panel. But on the ClinicPanelProvider the login() is not enabled. I added middleware for the admin panel AdminAccessMiddleware::class and ClinicAccessMiddleware::class for the clinic panel. so whenever a a users with a clinic admin roles logs in. the panel is smart enough to redirect them on the clinic panel which also handles the tenancy. Panel should share the same session if you use the same auth guard which in my case is.
"cms_admin" => [
"driver" => "session",
"provider" => "cms_admins",
],
"cms_admin" => [
"driver" => "session",
"provider" => "cms_admins",
],
6 replies
FFilament
Created by ronssij on 6/7/2024 in #❓┊help
Page reloading on multiple form page
No description
8 replies
FFilament
Created by ronssij on 6/7/2024 in #❓┊help
Page reloading on multiple form page
wire:submit.prevent="updateProfile" does not even solve the issue.
8 replies
FFilament
Created by ronssij on 6/7/2024 in #❓┊help
Page reloading on multiple form page
Sorry I mean I dont redirect the form when I submit the form, but still reloads the page.
8 replies
FFilament
Created by ronssij on 6/7/2024 in #❓┊help
Page reloading on multiple form page
I dont redirect them to anywhere. but its still redirects.
8 replies
FFilament
Created by ronssij on 2/26/2024 in #❓┊help
How to populate options from custom search results
@Dennis Koch Yes I found the solution on the using the getOptionLabel() Thank you
$this->getOptionLabelUsing(static function (GooglePlaceField $component, $state) {
$place = Places::getPlaceDetails($state);

return $place->formatted();
})
$this->getOptionLabelUsing(static function (GooglePlaceField $component, $state) {
$place = Places::getPlaceDetails($state);

return $place->formatted();
})
4 replies