Appearance
Usage Plugins
The starter kit provides a set of plugins that can be used to enhance the functionality of your application. These plugins are designed to be easy to use and integrate seamlessly with your existing codebase.
php
use App\StarterKit\StarterKitPlugin;
class AppPanelProvider extends PanelProvider
{
public function panel(Panel $panel): Panel
{
return $panel
->plugins([
StarterKitPlugin::class,
]);
}