Reference

Package list

Package list

Laravolt v7 is a platform made from focused packages.

The main laravolt/laravolt package wires the service providers, facades, commands, migrations, assets, and configuration together.

Core packages

Package namespacePurpose
Laravolt\Platformapplication shell, UI providers, menu services, permissions, settings, commands
Laravolt\Epicentrumuser, role, account, profile, and permission management screens
Laravolt\PrelineFormPreline UI form builder with validation and input masking support
Laravolt\Suitabletable/list builder for admin screens
Laravolt\AutoCrudgenerated CRUD workflows
Laravolt\Workflowprocess modules, forms, workflow service, events, and synchronization
Laravolt\Mediamedia library and client upload support
Laravolt\Assetplatform asset management
Laravolt\Supportshared helpers and support utilities

Optional / feature packages

Package namespacePurpose
Laravolt\Lookupconfigurable lookup/reference data
Laravolt\FileManagerfile management UI
Laravolt\DatabaseMonitordatabase monitoring surfaces
Laravolt\Mailkeeperqueued mail sending utilities
Laravolt\Thunderclapfundamental schema-driven CRUD/module scaffolding from database tables
Laravolt\Pintcode style helpers
Laravolt\SemanticFormlegacy-compatible form surface kept during migration

Facades and aliases

The main package registers these aliases:

AliasTarget
AssetLaravolt\Asset\AssetFacade
SuitableLaravolt\Suitable\Facade
PrelineFormLaravolt\PrelineForm\Facade
Formlegacy-compatible alias to the PrelineForm facade

For new v7 form code, prefer the explicit PrelineForm alias instead of the legacy-compatible Form alias.

Service providers

The metapackage auto-discovers providers for platform modules, Preline/Semantic form builders, Suitable, Auto CRUD, Workflow, Media, Lookup, File Manager, Mailkeeper, Thunderclap, Asset, Support, and UI services.

In normal applications you should not need to manually register those providers. If you are building a package or running an unusual testbench setup, confirm provider discovery before debugging missing views, commands, or facades.

Choosing the right primitive

If you need...Start with...
a create/edit formPrelineForm + FormRequest
a searchable admin listSuitable
generated CRUD from an existing tableThunderclap / AutoCrud
user and role managementEpicentrum
role-gated navigationplatform menu services + permissions
process state and approvalsWorkflow
uploads and media recordsMedia
Previous
Artisan commands