29 lines
694 B
PHP
29 lines
694 B
PHP
<?php
|
|
|
|
namespace App\Filament\Resources\ApprovalWorkflows\Schemas;
|
|
|
|
use Filament\Forms\Components\Textarea;
|
|
use Filament\Forms\Components\TextInput;
|
|
use Filament\Forms\Components\Toggle;
|
|
use Filament\Schemas\Schema;
|
|
|
|
class ApprovalWorkflowForm
|
|
{
|
|
public static function configure(Schema $schema): Schema
|
|
{
|
|
return $schema
|
|
->components([
|
|
TextInput::make('name')
|
|
->required()
|
|
->maxLength(255),
|
|
|
|
Textarea::make('description')
|
|
->maxLength(1000)
|
|
->rows(3),
|
|
|
|
Toggle::make('is_active')
|
|
->default(true),
|
|
]);
|
|
}
|
|
}
|