sortable(), Text::make(__('Name'), 'name') ->rules('required', 'string'), Text::make(__('List file name'), 'list_file_name') ->rules('required', 'string'), Markdown::make(__('Subject text'), 'subject_prompt') ->rules('required', 'string')->alwaysShow(), Markdown::make(__('Text prompt'), 'text_prompt') ->rules('required', 'string')->alwaysShow(), HasMany::make(__('Email texts'), 'emailTexts', EmailText::class), ]; } /** * Get the cards available for the request. */ public function cards(Request $request): array { return []; } /** * Get the filters available for the resource. */ public function filters(Request $request): array { return []; } /** * Get the lenses available for the resource. */ public function lenses(Request $request): array { return []; } /** * Get the actions available for the resource. */ public function actions(Request $request): array { return []; } }