13 lines
245 B
PHP
13 lines
245 B
PHP
<?php
|
|
|
|
namespace App\Filament\User\Pages;
|
|
|
|
use Filament\Pages\Page;
|
|
|
|
class Deposits extends Page
|
|
{
|
|
protected static ?string $navigationIcon = 'iconsax-two-money-recive';
|
|
|
|
protected static string $view = 'filament.user.pages.deposits';
|
|
}
|