You can attach the Filament Blog panel to the dashboard by adding the following code to your panel provider: Add Blog::make()
to your panel passing the class to your plugins()
method.
public function panel(Panel $panel): Panel
{
return $panel
->plugins([
Blog::make()
])
}