Billi 🌻
Billi 🌻
FFilament
Created by Billi 🌻 on 12/15/2023 in #❓┊help
Custom Login Page
Thank youu!! These solutions worked
9 replies
FFilament
Created by Billi 🌻 on 12/15/2023 in #❓┊help
Custom Login Page
But how will the page know where to put the form? Also do I fill out the schema with textInput etc?
9 replies
FFilament
Created by Billi 🌻 on 12/15/2023 in #❓┊help
Custom Login Page
I also tried going to the vendor directory and copy paste the code of the login.blade.php but the <x-filament-panels> errors were showing up, do I have to add them somewhere?
9 replies
FFilament
Created by Billi 🌻 on 12/13/2023 in #❓┊help
Pass the value of navigationLabel to create page
Thank you
39 replies
FFilament
Created by Billi 🌻 on 12/13/2023 in #❓┊help
Pass the value of navigationLabel to create page
Really appreciate it !
39 replies
FFilament
Created by Billi 🌻 on 12/13/2023 in #❓┊help
Pass the value of navigationLabel to create page
Okay, I will do that, thanks alot, sorry for the trouble!
39 replies
FFilament
Created by Billi 🌻 on 12/13/2023 in #❓┊help
Pass the value of navigationLabel to create page
->brandName(fn () => auth()->user()->clubname);
39 replies
FFilament
Created by Billi 🌻 on 12/13/2023 in #❓┊help
Pass the value of navigationLabel to create page
the same can be done for the clubname column?
39 replies
FFilament
Created by Billi 🌻 on 12/13/2023 in #❓┊help
Pass the value of navigationLabel to create page
Oh this worked! I guess I needed the fn call, THANK YOU SO MUCH!!!!
39 replies
FFilament
Created by Billi 🌻 on 12/13/2023 in #❓┊help
Pass the value of navigationLabel to create page
let me check by writing exactly this
39 replies
FFilament
Created by Billi 🌻 on 12/13/2023 in #❓┊help
Pass the value of navigationLabel to create page
Is it possible that AdminPanelProvider does the authentication later?
39 replies
FFilament
Created by Billi 🌻 on 12/13/2023 in #❓┊help
Pass the value of navigationLabel to create page
I have a column in my table that has value of their sports club so I want to later on set it as that but keeping it simple to name for now
39 replies
FFilament
Created by Billi 🌻 on 12/13/2023 in #❓┊help
Pass the value of navigationLabel to create page
I am logged in, is it possible its happening because I did the remember me? I can see my dashboard and everything and I see the 'default name' now
39 replies
FFilament
Created by Billi 🌻 on 12/13/2023 in #❓┊help
Pass the value of navigationLabel to create page
for some reason the name property doesnt exist, is there a way I can console the auth()->user() to see if it returns anything?
39 replies
FFilament
Created by Billi 🌻 on 12/13/2023 in #❓┊help
Pass the value of navigationLabel to create page
I tried using this too hoping it may just give the ID even but atleast this code doesnt give me an error $id = Auth::id();
39 replies
FFilament
Created by Billi 🌻 on 12/13/2023 in #❓┊help
Pass the value of navigationLabel to create page
Basically the $id needs to have the name of the current logged in user and I want to just dynamically change the name of the dashboard
39 replies
FFilament
Created by Billi 🌻 on 12/13/2023 in #❓┊help
Pass the value of navigationLabel to create page
Let me edit this xD
39 replies
FFilament
Created by Billi 🌻 on 12/13/2023 in #❓┊help
Pass the value of navigationLabel to create page
Sorry I'm kind of new to Laravel
39 replies
FFilament
Created by Billi 🌻 on 12/13/2023 in #❓┊help
Pass the value of navigationLabel to create page
class AdminPanelProvider extends PanelProvider
{
public function panel(Panel $panel): Panel
{
$id = Auth::user()->name;

return $panel
->default()
->id('admin')
->path('admin')
->login()
->brandName($id)

}
class AdminPanelProvider extends PanelProvider
{
public function panel(Panel $panel): Panel
{
$id = Auth::user()->name;

return $panel
->default()
->id('admin')
->path('admin')
->login()
->brandName($id)

}
39 replies
FFilament
Created by Billi 🌻 on 12/13/2023 in #❓┊help
Pass the value of navigationLabel to create page
Also is there a way I can pass the name of the logged in user as brandname in admin panel provider?
39 replies