|string> */ public function rules(): array { return [ 'title' => 'required|max:255', 'icon' => 'string|required', 'sort' => 'required', 'status' => 'required', 'keywords' => 'nullable|string|max:50', 'description' => 'nullable|string|max:500', 'logo' => 'nullable|image|mimes:jpg,png,jpeg,svg|max:512', ]; } }