From b474a7930d606b53872c07a63e3059e8052613a9 Mon Sep 17 00:00:00 2001 From: Ash Monsh Date: Wed, 20 Mar 2024 23:38:05 +0300 Subject: [PATCH] fix plugin id --- README.md | 16 ++++++++++++---- composer.json | 2 +- src/AkinTheme.php | 2 +- 3 files changed, 14 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index ebb082f..0d596a3 100644 --- a/README.md +++ b/README.md @@ -26,14 +26,22 @@ And more on the way. -## Demo +## Installation -> Visit our demo site: https://demo.larazeus.com +### composer +```bash +composer require lara-zeus/akin +``` -## Full Documentation +### register the plugin in your panel: +`AkinTheme::make(),` -> Visit our website to get the complete documentation: https://larazeus.com/docs/akin +### add this to your custom theme + +```css +@import '/vendor/lara-zeus/akin/resources/css/theme.css'; +``` ## Changelog diff --git a/composer.json b/composer.json index 328a29d..497acc9 100644 --- a/composer.json +++ b/composer.json @@ -28,7 +28,7 @@ "require": { "php": "^8.1", - "filament/filament": "^3.2.3", + "filament/filament": "^3.0", "illuminate/support": "^10.0|^11.0", "spatie/laravel-package-tools": "^1.15", "ryangjchandler/blade-tabler-icons": "^2.3" diff --git a/src/AkinTheme.php b/src/AkinTheme.php index 58a8689..b7a63f4 100644 --- a/src/AkinTheme.php +++ b/src/AkinTheme.php @@ -27,7 +27,7 @@ public static function make(): static public static function get(): static { // @phpstan-ignore-next-line - return filament('zeus-bolt'); + return filament('zeus-akin'); } public function boot(Panel $panel): void