sortable(), BelongsTo::make(__('Email Campaign'), 'emailCampaign', EmailCampaign::class), Text::make(__('Sender md5'), 'sender_md5') ->rules('required', 'string'), Text::make(__('Subject'), 'subject') ->rules('required', 'string'), Markdown::make(__('Text'), 'text') ->rules('required', 'string'), ]; } /** * 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 []; } }