14 lines
300 B
PHP
14 lines
300 B
PHP
<?php
|
|
|
|
namespace App\Filament\User\Pages;
|
|
|
|
use Filament\Pages\Page;
|
|
|
|
class Transactions extends Page
|
|
{
|
|
protected static ?string $navigationIcon = 'heroicon-o-document-text';
|
|
|
|
protected static string $view = 'filament.user.pages.transactions';
|
|
|
|
protected static ?int $navigationSort = 3;
|
|
} |