17 lines
327 B
PHP
17 lines
327 B
PHP
<?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([
|
|
//
|
|
]);
|
|
}
|
|
}
|