14 lines
294 B
PHP
14 lines
294 B
PHP
<?php
|
|
|
|
namespace App\Filament\User\Pages;
|
|
|
|
use Filament\Pages\Page;
|
|
|
|
class Deposits extends Page
|
|
{
|
|
protected static ?string $navigationIcon = 'heroicon-o-currency-dollar';
|
|
|
|
protected static string $view = 'filament.user.pages.deposits';
|
|
|
|
protected static ?int $navigationSort = 2;
|
|
} |