Skip to content

Live Poll Widget

This page is generated from package source documentation in the Capell packages repository and the checked-in manifest. Source documentation is not distribution status. Before running a Composer command, verify that the exact package and compatible 1.x release are available through public Packagist or the authenticated marketplace account.

FieldValue
Composer packagecapell-app/widget-live-poll
Package slugwidget-live-poll
Product groupCapell Foundation
Tierfree
Bundlefoundation
Runtime contextsadmin, frontend, console
Capell version^1.0
Source repositorycapell-app/packages
Source pathpackages/widget-live-poll
Docs sourcepackages/widget-live-poll/docs
Manifestcapell.json

Live Poll Widget is an Available, Schema-owning Capell package in the Capell Foundation product group. It ships as capell-app/widget-live-poll and extends these surfaces: admin, frontend, console.

Live Poll adds persisted polls, options, votes, public voting endpoints, and voter-retention cleanup to a Layout Builder widget. Result visibility and repeat-vote behavior are enforced by the poll domain Actions.

Editors configure locale-specific polls in Layout Builder, and visitors can vote and see results only when the configured visibility policy permits it.

Evidence: src/Actions/CastPollVoteAction.php, src/Actions/SyncPublishedPollAction.php, src/Actions/PruneClosedPollVotersAction.php, tests/Feature/LivePollTest.php, src/Providers/WidgetLivePollServiceProvider.php, src/Actions/ResolveLivePollPayloadsAction.php, resources/views/widget.blade.php.

Status details:

  • Status: Available
  • Tier: free
  • Bundle: foundation
  • Composer package: capell-app/widget-live-poll
  • Namespace: Capell\WidgetLivePoll
  • Theme key: not applicable

For developers: Voting, publication sync, payload resolution, rate controls, and retention are separated into Actions and provider configuration with feature coverage.

For teams: Teams can collect a bounded audience response on the page while controlling when aggregate results become public.

Evidence: src/Providers/WidgetLivePollServiceProvider.php, src/Actions/CastPollVoteAction.php, src/Actions/ResolveLivePollPayloadsAction.php, tests/Feature/LivePollTest.php, resources/views/widget.blade.php.

Screenshot contract: docs/screenshots.json.

Live Poll Widget extension card

  • Live Poll Widget extension card (marketplace, required).
  • Live Poll fields in Layout Builder (admin, optional).
  • Live Poll public output (frontend, optional).
  • Service providers: Capell\WidgetLivePoll\Providers\WidgetLivePollServiceProvider.
  • Config files: packages/widget-live-poll/config/capell-widget-live-poll.php.
  • Migrations: packages/widget-live-poll/database/migrations/2026_07_09_000001_create_capell_polls_table.php, packages/widget-live-poll/database/migrations/2026_07_09_000002_create_capell_poll_options_table.php, packages/widget-live-poll/database/migrations/2026_07_09_000003_create_capell_poll_votes_table.php.
  • Models: Poll, PollOption, PollVote.
  • Filament classes: LivePollWidget.
  • Route files: packages/widget-live-poll/routes/web.php.
  • Listeners: SyncPublishedPollsListener.
  • Actions: CastPollVoteAction, PruneClosedPollVotersAction, ResolveLivePollPayloadsAction, SyncPublishedPollAction.
  • Data objects: LivePollInputData, LivePollRenderData, LivePollRenderOptionData, PollOptionInputData, PollPublicationData, PollVoteResultData.
  • Scheduled commands: capell:polls:prune-voters (daily).
  • Console command classes: PrunePollVotersCommand.
  • Manifest contributions: content-widget: Capell\WidgetLivePoll\WidgetLivePollContribution, scheduled-job: Capell\WidgetLivePoll\Manifest\LivePollPruneScheduleContribution.
  • Health checks: Capell\WidgetLivePoll\Health\WidgetLivePollHealthCheck.
  • Blade views: packages/widget-live-poll/resources/views/widget.blade.php.
  • Cache tags: widget-live-poll.
  • Required tables: capell_polls, capell_poll_options, capell_poll_votes.
  • Models: Poll, PollOption, PollVote.
  • Core record references in migrations: sites via site_id, languages via language_id.
  • Migration files: 2026_07_09_000001_create_capell_polls_table.php, 2026_07_09_000002_create_capell_poll_options_table.php, 2026_07_09_000003_create_capell_poll_votes_table.php.
  • Migration impact: run host migrations through the package install flow before opening package surfaces.
  • Deletion/retention behaviour: migrations declare cascade-on-delete relationships; retention is scheduled through capell:polls:prune-voters (daily).
  • Required packages: capell-app/admin, capell-app/core, capell-app/frontend, capell-app/layout-builder.
  • Admin navigation: no admin page or resource contribution is declared.
  • Admin/editor extensions: content-widget: WidgetLivePollContribution.
  • Permissions: none declared in capell.json.
  • Public routes: loads routes/web.php.
  • Database changes: package migrations are declared.
  • Config: config/capell-widget-live-poll.php.
  • Settings: no package settings declared.
  • Queues or schedules: scheduled commands capell:polls:prune-voters (daily).
  • Cache tags: widget-live-poll.
  • Commands: console command classes detected: PrunePollVotersCommand.
  • Keep required Capell packages on compatible v4 releases: capell-app/admin, capell-app/core, capell-app/frontend, capell-app/layout-builder.
  • Run migrations before opening package resources or public routes.
  • Review package configuration before production-like verification: config/capell-widget-live-poll.php.
  • Review middleware, throttling, signatures, and public-output safety in routes/web.php before exposing routes.
  • Register the host scheduler so these declared commands run at their documented frequencies: capell:polls:prune-voters (daily).
  • Keep public Blade and cached HTML free of authoring markers, model IDs, permissions, signed editor URLs, and lazy database queries.
  • Custom write integrations must preserve invalidation for widget-live-poll cache tags.
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
Admin screen or command fails on missing tablePackage migrations have not runCheck the tables listed in Data ModelRun host migrations and rerun the focused package test
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
Background work does not runQueue worker or declared schedule is not activeCheck the jobs and scheduled commands listed in Technical ShapeStart the queue worker or host scheduler, then run the focused command or package test
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/widget-live-poll.
  2. Run the required setup: php artisan migrate.
  3. Open the package detail or install-intent surface and confirm the Live Poll Widget extension card is present.