Skip to content

Frontend Authoring

This page is generated from public package documentation in capell-4/packages and the package manifest checked into the source repository.

FieldValue
Composer packagecapell-app/frontend-authoring
Package slugfrontend-authoring
Product groupCapell Foundation
Tierfree
Bundlefoundation
Runtime contextsfrontend, console
Capell version^4.0
Source repositorycapell-app/packages
Source pathpackages/frontend-authoring
Docs sourcepackages/frontend-authoring/docs
Manifestcapell.json

Frontend Authoring is an Available, No schema impact Capell package in the Capell Foundation product group. It ships as capell-app/frontend-authoring and extends these surfaces: frontend, console.

In-page (frontend) editing for Capell: an admin-only beacon adds inline edit controls to live pages without leaking any editor markup or signed URLs into public or cached output.

After install, the package affects public rendering, public routes, or frontend runtime behaviour.

Status details:

  • Status: Available
  • Tier: free
  • Bundle: foundation
  • Composer package: capell-app/frontend-authoring
  • Namespace: Capell\FrontendAuthoring
  • Theme key: not applicable

For developers: The package gives developers package-owned service providers, Actions, Data objects, Laravel routes, and Blade views instead of pushing this behaviour into core or application code.

For teams: Edit page titles, descriptions and content straight from the live site - admins get inline edit controls after the page loads, while visitors and caches only ever see ordinary HTML.

Screenshot contract: docs/screenshots.json.

  • Frontend page with authoring enabled for admins (frontend, required).
  • Capell app frontend authoring working on the public homepage (frontend, required).
  • Capell app frontend authoring working on mobile (frontend, required).
  • Beacon network request (admin, required).
  • Frontend authoring enabled/disabled configuration proof (admin, required).
  • Service providers: Capell\FrontendAuthoring\Providers\FrontendAuthoringServiceProvider.
  • Config files: packages/frontend-authoring/config/capell-frontend-authoring.php.
  • Livewire components: EditRegionField.
  • Route files: packages/frontend-authoring/routes/web.php.
  • Actions: AuthorizeEditableRegionAction, BuildAuthoringBannerContextAction, BuildBeaconResponseAction, BuildEditableRegionManifestAction, ClearAffectedCachedUrlsAction, CollectAffectedCachedUrlsAction, UpdateEditableRegionAction, ValidateEditableRegionPayloadAction.
  • Data objects: EditableRegionData, EditableRegionPayloadData.
  • Manifest contributions: route: Capell\FrontendAuthoring\Manifest\FrontendAuthoringRoutesContribution.
  • Health checks: Capell\FrontendAuthoring\Health\FrontendAuthoringHealthCheck.
  • Blade views: packages/frontend-authoring/resources/views/authoring/bootstrap-script.blade.php, packages/frontend-authoring/resources/views/components/page-data.blade.php, packages/frontend-authoring/resources/views/editor/filament-shell-assets.blade.php, packages/frontend-authoring/resources/views/editor/region.blade.php, packages/frontend-authoring/resources/views/livewire/edit-region-field.blade.php.
  • Cache tags: frontend-authoring.

This package has no schema impact. It does not declare package-owned migrations or required tables.

Docs gap: document extension points here if the package delegates persistence to a host package.

  • Admin navigation: no admin surface declared.
  • Permissions: frontend-authoring.edit.
  • Public routes: route files exist and must be reviewed before public enablement.
  • Database changes: no package migrations declared.
  • Settings: no package settings declared.
  • Queues or schedules: none detected in standard package paths.
  • Cache tags: frontend-authoring.
  • Commands: none declared.
  • Review route middleware, throttling, signed URLs, and public-output safety before exposing routes.
  • Keep public Blade and cached HTML free of authoring markers, model IDs, permissions, signed editor URLs, and lazy database queries.
  • Run package commands from the host app; in this repository use vendor/bin/pest for package tests.
  • Keep composer.json, composer.local.json, capell.json, docs, screenshots, and tests aligned when the package surface changes.
SymptomLikely causeCheckFix
Package surface is missing after installProvider or manifest is not loadedConfirm capell.json, package composer.json, and provider registrationReinstall the package, refresh Composer autoload, and clear host caches
Route returns unexpected outputRoute cache, middleware, or signed URL setup does not match the package route fileCheck the route files listed in Technical ShapeClear route cache and verify middleware before exposing public routes
Public output leaks unexpected stateRender data, cache variation, or authoring boundary has regressedCheck public Blade, cache tags, and public-output safety testsMove data loading out of Blade and rerun the package public-output tests
  1. Install the package: composer require capell-app/frontend-authoring.
  2. Run the required setup: no package migrations are declared; clear cached config and routes if the host app uses caches.
  3. Verify the package provider is registered and the related frontend, command, or extension point is active.