Edit forms
is there a way to change the Edit in the forms?? I want to change the word Edit
Solution:Jump to solution
protected static ?string $title = 'View Answer';
you can treat the editresource like the same as the default resource...
8 Replies
i tried reading and editing the editrecords, but nothing worked
Need to change action name edit?
Yepp, i want to change the word 'Edit' to another word? is there any way to configure that?
you can use ->label('')
this is at the top btw along with the breadcrumbs, not sure how would i put label here
Nvm, found the solution. Thank you.
protected static ?string $label = ''
Solution
protected static ?string $title = 'View Answer';
you can treat the editresource like the same as the default resource
yepp, thank you.