Files
hoshpoint-backend/app/Filament/Resources/Wallets/Pages/ListWallets.php

12 lines
255 B
PHP

<?php
namespace App\Filament\Resources\Wallets\Pages;
use App\Filament\Resources\Wallets\WalletResource;
use Filament\Resources\Pages\ListRecords;
class ListWallets extends ListRecords
{
protected static string $resource = WalletResource::class;
}