1. Go to this page and download the library: Download nuxtifyts/dash-stack-theme library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
nuxtifyts / dash-stack-theme example snippets
use Nuxtifyts\DashStackTheme\DashStackThemePlugin;
// ...
$panel->plugin(DashStackThemePlugin::make());
// filament-dash-stack-theme.php
use Nuxtifyts\DashStackTheme\Support\Colors\Color;
return [
'default-colors' => [
'primary' => Color::Blue,
],
'side-bar-collapsable-on-desktop' => true,
'collapsible-navigation-groups' => false,
'breadcrumbs' => false,
/**
* Nunito Sans is the default font for the theme.
*/
'use-default-font' => true,
];