This commit is contained in:
2025-10-27 18:02:45 +05:00
parent a96f4fc8c8
commit 918663c758
5 changed files with 26 additions and 14 deletions

View File

@@ -3,6 +3,9 @@
namespace App\Providers;
use AbdulmajeedJamaan\FilamentTranslatableTabs\TranslatableTabs;
use Filament\Notifications\Livewire\Notifications;
use Filament\Support\Enums\Alignment;
use Filament\Support\Enums\VerticalAlignment;
use Illuminate\Contracts\Foundation\Application;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Support\ServiceProvider;
@@ -25,6 +28,9 @@ class AppServiceProvider extends ServiceProvider
Model::unguard();
Model::shouldBeStrict(! app()->isProduction());
Notifications::alignment(Alignment::Center);
Notifications::verticalAlignment(VerticalAlignment::Center);
TranslatableTabs::configureUsing(function (TranslatableTabs $component) {
$component
->localesLabels(baseLocales())

View File

@@ -3,7 +3,7 @@
namespace App\Providers\Filament;
use App\Http\Middleware\EnsureProfileIsFilled;
use App\Livewire\UserPassportFields;
use App\Livewire\UserProfileFields;
use App\Modules\BaseAuth\Middleware\RedirectIfUserPhoneIsUnVerfied;
use BezhanSalleh\FilamentShield\FilamentShieldPlugin;
use CraftForge\FilamentLanguageSwitcher\FilamentLanguageSwitcherPlugin;
@@ -77,7 +77,7 @@ class WorkPanelProvider extends PanelProvider
->setIcon('heroicon-o-user-circle')
->shouldShowEditProfileForm(false)
->customProfileComponents([
UserPassportFields::class,
UserProfileFields::class,
]),
])
->authMiddleware([
@@ -85,9 +85,9 @@ class WorkPanelProvider extends PanelProvider
EnsureProfileIsFilled::class,
])
->spa()
->spaUrlExceptions(fn (): array => [
EditProfilePage::getUrl(),
])
// ->spaUrlExceptions(fn (): array => [
// EditProfilePage::getUrl(),
// ])
->databaseTransactions()
->breadcrumbs(false)
->colors([