Skip to content

Commit b41cc25

Browse files
committed
update settings
1 parent b0e130e commit b41cc25

File tree

6 files changed

+7
-209
lines changed

6 files changed

+7
-209
lines changed

app/Filament/Admin/Resources/ModuleResource.php

Lines changed: 0 additions & 140 deletions
This file was deleted.

app/Filament/Admin/Resources/ModuleResource/Pages/ListModules.php

Lines changed: 0 additions & 27 deletions
This file was deleted.

app/Filament/Admin/Resources/ModuleResource/Pages/ViewModule.php

Lines changed: 0 additions & 36 deletions
This file was deleted.

app/Providers/Filament/AdminPanelProvider.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
use App\Filament\App\Pages;
66
use App\Http\Middleware\TeamsPermission;
77
use App\Models\Team;
8+
use BezhanSalleh\FilamentShield\FilamentShieldPlugin;
89
use Filament\Facades\Filament;
910
use Filament\Http\Middleware\Authenticate;
1011
use Filament\Http\Middleware\DisableBladeIconComponents;
@@ -66,7 +67,7 @@ public function panel(Panel $panel): Panel
6667
TeamsPermission::class,
6768
])
6869
->plugins([
69-
\BezhanSalleh\FilamentShield\FilamentShieldPlugin::make()
70+
FilamentShieldPlugin::make()
7071
->navigationGroup('Administration')
7172
]);
7273

composer.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

database/migrations/2024_01_01_000001_create_settings_table.php renamed to database/settings/2024_01_01_000001_create_settings_table.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
{
77
public function up(): void
88
{
9-
$this->migrator->add('general.site_name', config('app.name', 'Liberu Genealogy'));
9+
$this->migrator->add('general.site_name', config('app.name', 'Liberu Automation'));
1010
$this->migrator->add('general.site_email', 'info@example.com');
1111
$this->migrator->add('general.site_phone', '');
1212
$this->migrator->add('general.site_address', '');
@@ -15,8 +15,8 @@ public function up(): void
1515
$this->migrator->add('general.site_default_language', 'en');
1616
$this->migrator->add('general.facebook_url', null);
1717
$this->migrator->add('general.twitter_url', null);
18-
$this->migrator->add('general.github_url', 'https://www.github.com/liberu-genealogy');
18+
$this->migrator->add('general.github_url', 'https://www.github.com/liberu-automation/automation-laravel');
1919
$this->migrator->add('general.youtube_url', null);
20-
$this->migrator->add('general.footer_copyright', '© ' . date('Y') . ' ' . config('app.name', 'Liberu Genealogy') . '. All rights reserved.');
20+
$this->migrator->add('general.footer_copyright', '© ' . date('Y') . ' ' . config('app.name', 'Liberu Automation') . '. All rights reserved.');
2121
}
2222
};

0 commit comments

Comments
 (0)