Skip to content

Commit

Permalink
Trait FilamentPagesConcernsHasMaxWidth not found #5
Browse files Browse the repository at this point in the history
  • Loading branch information
3x1io committed Sep 11, 2024
1 parent af45a89 commit a7f4047
Showing 1 changed file with 0 additions and 8 deletions.
8 changes: 0 additions & 8 deletions src/Filament/Pages/Billing.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@
use Filament\Pages\SimplePage;
use Filament\Pages\Concerns;
use Filament\Panel;
use Filament\Support\Enums\MaxWidth;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Support\Carbon;
use Illuminate\Support\Facades\Event;
Expand All @@ -27,7 +26,6 @@

class Billing extends Page implements HasActions
{
use Concerns\HasMaxWidth;
use Concerns\HasTopbar;
use InteractsWithActions;

Expand All @@ -54,7 +52,6 @@ protected function getLayoutData(): array
{
return [
'hasTopbar' => $this->hasTopbar(),
'maxWidth' => $this->getMaxWidth(),
];
}

Expand All @@ -63,11 +60,6 @@ public function hasLogo(): bool
return true;
}

public function getMaxWidth(): MaxWidth | string | null
{
return MaxWidth::FiveExtraLarge;
}

protected static ?string $title = 'Billing';

protected static string $view = 'filament-subscriptions::pages.billing';
Expand Down

0 comments on commit a7f4047

Please sign in to comment.