Files
qds/app/Filament/Pages/Welcome.php
dhanabalan dc95259fc5
Some checks failed
Scan for leaked secrets using Kingfisher / kingfisher-secrets-scan (push) Successful in 12s
Scan for leaked secrets using Kingfisher / kingfisher-secrets-scan (pull_request) Successful in 13s
Gemini PR Review / Gemini PR Review (pull_request) Successful in 20s
Laravel Pint / pint (pull_request) Failing after 2m32s
Laravel Larastan / larastan (pull_request) Failing after 5m36s
fix conflict issue in sticker pdf service
2026-09-20 10:50:49 +05:30

20 lines
363 B
PHP

<?php
namespace App\Filament\Pages;
use Filament\Pages\Page;
class Welcome extends Page
{
protected static ?string $navigationIcon = 'heroicon-o-document-text';
protected static string $view = 'filament.pages.welcome';
protected static ?string $navigationGroup = 'IIOT';
public function getHeading(): string
{
return '';
}
}