Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
marco76tv committed Jun 24, 2024
1 parent 2b5653b commit 70e4b36
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions Filament/Pages/TestSmtpPage.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
<?php

declare(strict_types=1);

namespace Modules\Notify\Filament\Pages;

use Filament\Pages\Page;

class TestSmtpPage extends Page
{
protected static ?string $navigationIcon = 'heroicon-o-home';

protected static string $view = 'notify::filament.pages.dashboard';

public function mount(): void
{
/*
$user = auth()->user();
if (! $user?->hasRole('super-admin')) {
redirect('/admin');
}
*/
}
}

0 comments on commit 70e4b36

Please sign in to comment.