-
-
Notifications
You must be signed in to change notification settings - Fork 7
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How to mount to the dashboard? #2
Comments
Hi, create a custom page for your Dashboard, extend the filament original dashboard and implement the mount function according to the documentation: public function mount(): void
{
parent::mount();
$this->mountTutorial();
}
``` |
Problem is when I implement it according to the documentation I get the
following error:
Method App\Filament\Pages\Dashboard::mount does not exist.
…On Wed, Dec 6, 2023 at 8:39 AM Lukas Frey ***@***.***> wrote:
Hi, create a custom page for your Dashboard, extend the filament original
dashboard and implement the mount function according to the documentation:
public function mount(): void
{
parent::mount();
$this->mountTutorial();
}
```
—
Reply to this email directly, view it on GitHub
<#2 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/APOL47XCCMODIITPWPCCJDDYIAVMNAVCNFSM6AAAAABAILMVUWVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMYTQNBSGQZTCNBYGY>
.
You are receiving this because you authored the thread.Message ID:
***@***.***>
--
*Darren Glanville*
www.darren-glanville.dev
***@***.***
07477885121
|
does this had a solution? |
Don't call |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I would like to use this on the dashboard, how do I do that?
The text was updated successfully, but these errors were encountered: