add resource for visamaster

This commit is contained in:
2025-11-07 01:34:58 +05:00
parent 84f551ddc6
commit 9be16228f7
9 changed files with 236 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
<?php
namespace App\Filament\Clusters\VisaMasterPayments\Resources\VisaMasterPaymentOrders\Schemas;
use Filament\Schemas\Schema;
class VisaMasterPaymentOrderForm
{
public static function configure(Schema $schema): Schema
{
return $schema
->components([
//
]);
}
}

View File

@@ -0,0 +1,16 @@
<?php
namespace App\Filament\Clusters\VisaMasterPayments\Resources\VisaMasterPaymentOrders\Schemas;
use Filament\Schemas\Schema;
class VisaMasterPaymentOrderInfolist
{
public static function configure(Schema $schema): Schema
{
return $schema
->components([
//
]);
}
}