Closed jeevatrippy closed 6 months ago
It seems following section of your implementation is incorrect.
->plugin(
FilamentFullCalendarPlugin::make(),
Blog::make()
)
Since, you are using multiple plugins here, you have to provide it as array.
->plugins([
FilamentFullCalendarPlugin::make(),
Blog::make()
])
I think this should work.
Thank you !!! 😬😬
Thank you !!! 😬😬
@jeevatrippy Does it work for you?
Thank you !!! 😬😬
@jeevatrippy Does it work for you?
Yes... Worked... @AsmitNepali
The blog not working with an existing application.
I'm using filament version 3.2. And running the application in localhost
http://127.0.0.1:8000/blogs ⇒ working fine
http://127.0.0.1:8000/admin/categories ⇒ Not working getting 404 not found error.
Also, I did not get the menus in the sidebar.
My AdminPanelProvider provider
My config file
My User model
Please help me to resolve this issue