Calling a custom page from a function
I am extending the default passport oauth2 flow and want to customize the view, in which I want to stick with filaments design.
So I create a page class, and then in my function, I need to know how to return the page etc
I have this currently, and it goes to the blade file, but doesn't detect any of my variables which I set in the mount
Solution:Jump to solution
Right that's why, you are using a panel page but not yet in panels as you are not logged in. That's your issue. Just use a custom Livewire page
17 Replies
If I try this approach
I get
Using $this when not in object context
My page
š$this means it doesn't exist in the method you are using it. toResponse wouldn't have $this->parameters
You need to work out what $this->parameters is
Sorry for the delay, got put on another project.
So there is a function further up that defines $this->parameters, I should have shared that also, my bad.
This is what the class is by default
Try:
self::parameters if that's defined further up.
Oh, I also missed out that the context of $this, was in my view, rather than the backend.
So was when I was using $this->form in my blade view..
But also seems I didnt save this to a branch, so will have to add everything back in manually
So don't use $this-> in the view if you add it to the livewire blade you can just call $parameters
But I think because I also use the ->render() then it is going straight to the view, rather than the page class? Or am I dumb?
As mount() never gets picked up either
Even if I have nothing in my blade other than the page
It still complains about $this. So there must be something in my page that im missing from the setup?
I have a feeling its because its not finding an instance of the livewire component when im instantiating my page like the above.
But there is a lack of resources surrounding this online or in the documentation, so I am unclear of what I need to do
If it helps, my use case is that passport has its own oauth2 flow/screen. I want to change that screens styling to match my styling used in the filament cms
You shouldn't use $this in a custom page view.
So how can I have the ability to implement the filament-panels::page with the livewire components needed so I can get the styling?
So anything you define ont eh livewire component is accesible within the view. you just call it directly i.e. $parameters not $this->parameters
Yeah, but lets say I add nothing. So all my blade view is:
Im still getting the error
If you have opcache enabled you need retart php-fpm
what is the livewire component for that page?
I dont think one was being passed, I wasnt sure how to set one up
So how is the page being defined/rendered?
https://discord.com/channels/883083792112300104/1341697229685002332/1341700838623805491
I was trying to define it through the oauth2 flow
Think Im just going about all this in the wrong way, and confusing myself
Solution
Right that's why, you are using a panel page but not yet in panels as you are not logged in. That's your issue. Just use a custom Livewire page
Gotcha, cheers