feat(wallets): implement wallet and transaction management with associated models, policies, and resources

This commit is contained in:
2026-06-07 00:18:32 +03:30
parent c2319a55cb
commit d1d42b38d1
23 changed files with 790 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
<?php
namespace App\Filament\Resources\Wallets\Schemas;
use Filament\Forms\Components\Toggle;
use Filament\Schemas\Schema;
class WalletForm
{
public static function configure(Schema $schema): Schema
{
return $schema
->components([
Toggle::make('is_active')
->label('فعال')
->default(true),
]);
}
}