Skip to content

Commit

Permalink
Merge branch 'update-3' of github.com:lara-zeus/zeus into update-3
Browse files Browse the repository at this point in the history
  • Loading branch information
atmonshi committed Jan 23, 2024
2 parents 58de831 + 6d894a4 commit a82987a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
2 changes: 1 addition & 1 deletion app/Models/User.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

class User extends Authenticatable implements FilamentUser, MustVerifyEmail
{
use CanResetPassword, HasApiTokens, HasFactory, HasRoles, Notifiable, HasBoringAvatar;
use CanResetPassword, HasApiTokens, HasBoringAvatar, HasFactory, HasRoles, Notifiable;

protected $guarded = [];

Expand Down
3 changes: 1 addition & 2 deletions app/Providers/Filament/AdminPanelProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@
use Illuminate\View\Middleware\ShareErrorsFromSession;
use LaraZeus\Bolt\BoltPlugin;
use LaraZeus\Boredom\BoringAvatarPlugin;
use LaraZeus\Boredom\Enums\Variants;
use LaraZeus\DynamicDashboard\DynamicDashboardPlugin;
use LaraZeus\Sky\SkyPlugin;
use LaraZeus\Wind\WindPlugin;
Expand Down Expand Up @@ -91,7 +90,7 @@ public function plugins(): array
->navigationGroupLabel('CMS'),

BoringAvatarPlugin::make()
->colors(['0A0310','49007E','FF005B','FF7D10','FFB238']),
->colors(['0A0310', '49007E', 'FF005B', 'FF7D10', 'FFB238']),

SkyPlugin::make()
->navigationGroupLabel('CMS'),
Expand Down
3 changes: 1 addition & 2 deletions config/zeus.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@
'theme' => 'zeus',
'layout' => 'zeus::components.app',


/**
* this will be set up the default seo site title. read more about it in 'laravel-seo'.
*/
Expand All @@ -33,7 +32,7 @@
/**
* this will be setup the default seo site description. read more about it in 'laravel-seo'.
*/
'site_description' => 'All about ' . config('app.name', 'Laravel'),
'site_description' => 'All about '.config('app.name', 'Laravel'),

/**
* this will be setup the default seo site color theme. read more about it in 'laravel-seo'.
Expand Down

0 comments on commit a82987a

Please sign in to comment.