1
0
forked from poc/pds

Added welcome page in cri page

This commit is contained in:
dhanabalan
2026-01-23 16:11:55 +05:30
parent fff610bc2e
commit 0161e76330
2 changed files with 44 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
<?php
namespace App\Filament\Pages;
use Filament\Pages\Page;
use Illuminate\Support\Facades\Auth;
class Welcome extends Page
{
protected static ?string $navigationIcon = 'heroicon-o-document-text';
protected static string $view = 'filament.pages.welcome';
public function getHeading(): string
{
return '';
}
// public static function canAccess(): bool
// {
// return Auth::check() && Auth::user()->can('view welcome page');
// }
}