iquesters / help-support
Help support package
v1.0.0
2026-03-24 08:26 UTC
Requires
- laravel/framework: ^10.0|^11.0|^12.0
Requires (Dev)
- laravel/pint: ^1.0
- laravel/tinker: ^2.8
README
The help-support package provides a simple UI entry point for package-scoped Blade views.
Package Wiring
- Service provider:
Iquesters\HelpSupport\HelpSupportServiceProvider - View namespace:
helpsupport:: - Base layout:
helpsupport::layouts.app
UI Route
The package exposes a generic UI route:
GET /help-support/{viewName}
This route is handled by:
Iquesters\HelpSupport\Http\Controllers\UiController@show
View Resolution
The UI controller converts a passed view name into the package namespace.
Examples:
-
Request:
/help-support/helps.index -
Resolved view:
helpsupport::helps.index -
Request:
/help-support/helps/create -
Resolved view:
helpsupport::helps.create
If the resolved view does not exist, the controller returns 404.
Current Views
helpsupport::layouts.apphelpsupport::helps.index
Notes
- The package currently uses a dynamic view-name route for quick UI scaffolding.
- If the package grows, replace the dynamic route with explicit feature routes for better clarity and access control.