|string> */ public function rules(): array { return [ 'name' => ['required', 'string', 'max:100'], 'amount' => ['required', 'numeric', 'min:0'], 'image' => ['nullable', 'image', 'max:5120'], ]; } }