Skip to content

Commit

Permalink
Merge pull request #196 from GeOsmFamily:dev
Browse files Browse the repository at this point in the history
update filament admin
  • Loading branch information
BorisGautier authored Oct 8, 2023
2 parents 6b2945a + 693c0b9 commit 45e0891
Show file tree
Hide file tree
Showing 7 changed files with 1,068 additions and 1 deletion.
7 changes: 7 additions & 0 deletions app/Providers/Filament/AdminPanelProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@
use ShuvroRoy\FilamentSpatieLaravelHealth\FilamentSpatieLaravelHealthPlugin;
use App\Filament\Pages\HealthPage;
use pxlrbt\FilamentEnvironmentIndicator\EnvironmentIndicatorPlugin;
use Saade\FilamentLaravelLog\FilamentLaravelLogPlugin;

class AdminPanelProvider extends PanelProvider
{
Expand All @@ -42,6 +43,12 @@ public function panel(Panel $panel): Panel
->plugin(FilamentProgressbarPlugin::make()->color('#70af85'))
->plugin(FilamentSpatieLaravelBackupPlugin::make()->usingPage(BackupPage::class))
->plugin(FilamentSpatieLaravelHealthPlugin::make()->usingPage(HealthPage::class))
/* ->plugin(
FilamentLaravelLogPlugin::make()
->navigationGroup('Paramètres')
->navigationLabel('Logs')
)*/
->plugins([
EnvironmentIndicatorPlugin::make(),
])
Expand Down
1 change: 1 addition & 0 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@
"psr/simple-cache": "2.0",
"pxlrbt/filament-environment-indicator": "^2.0",
"pxlrbt/filament-excel": "^2.1",
"saade/filament-laravel-log": "3.0",
"shuvroroy/filament-spatie-laravel-backup": "^2.0",
"shuvroroy/filament-spatie-laravel-health": "^2.0",
"spatie/laravel-analytics": "^5.0",
Expand Down
81 changes: 80 additions & 1 deletion composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

18 changes: 18 additions & 0 deletions config/filament-laravel-log.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
<?php

return [
/**
* Maximum amount of lines that editor will render.
*/
'maxLines' => 50,

/**
* Minimum amount of lines that editor will render.
*/
'minLines' => 10,

/**
* Editor font size.
*/
'fontSize' => 12,
];

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions public/index.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
use Illuminate\Contracts\Http\Kernel;
use Illuminate\Http\Request;

ini_set('memory_limit', '-1');
define('LARAVEL_START', microtime(true));

/*
Expand Down
Loading

0 comments on commit 45e0891

Please sign in to comment.