You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Refactor: Remove unused code from old controller/view implementation
- Remove PublicHelpArticleController and related views
- Remove HelpLayout component and public route views
- Remove unused test files (PublicHelpArticleTest, PublicTestCase)
- Remove empty Http directories
- Update ViewHelpArticle to use guest panel resource URL
- Remove CSS config option (now handled by Filament panel themes)
- Update config to use frontend_slug and guest_slug instead of route_prefix
-**Environment variable**: `FILAMENT_HELP_GUEST_SLUG` - Override via `.env`
137
+
138
+
**Location**: Guest panel (defaults to panel path, configurable)
139
+
**Access**: Public (no authentication required)
140
+
**Features**: Read-only access to public help articles for guests
141
+
142
+
**Note**: If you set the guest slug to an empty string (default), the help articles will be available directly at the panel path. For example, if your panel path is `help`, articles will be at `/help` and `/help/{slug}`.
143
+
144
+
## Help Article Locations
145
+
146
+
Help articles are available in three different locations depending on your setup:
147
+
148
+
1.**Admin Panel** (`/admin/help-articles`): For editing and managing help articles
149
+
2.**App Panel** (configurable, default `/help`): For authenticated users to view public help articles
150
+
3.**Guest Panel** (configurable, default uses panel path): For public/guest users to view public help articles
151
+
152
+
The frontend and guest panel URLs can be customized using the plugin's `->slug()` method or via configuration (see plugin documentation above).
153
+
97
154
## Features
98
155
99
156
-**Admin Panel**: Full CRUD operations for help articles
100
-
-**Frontend**: Read-only access to public help articles
157
+
-**Frontend/Guest**: Read-only access to public help articles
101
158
-**Rich Content**: HTML content support with iframe embedding
102
159
-**Public/Private**: Control article visibility
103
160
-**Search & Filter**: Find articles by name and filter by public status
0 commit comments