1234567891011121314151617 |
- <?php
- namespace App\Services;
- use App\Models\WalletWithdrawRecord;
- use Slowlyo\OwlAdmin\Services\AdminService;
- class WalletWithdrawRecordService extends AdminService
- {
- protected string $modelName = WalletWithdrawRecord::class;
- }
|