| Install | |
|---|---|
composer require typicms/base |
TypiCMS is a modular multilingual content management system built with Laravel. Out of the box you can manage pages, events, news, places, menus, translations, and more.

The CMS manages the following URL patterns:
Modules:
Pages:
For all server requirements, see the Laravel deployment documentation.
Install the Laravel installer if you haven't already:
composer global require laravel/installer
Then create a new project:
laravel new mywebsite --using=typicms/base
The installer will prompt you for database credentials and run the full TypiCMS setup automatically.
composer create-project typicms/base mywebsite
cd mywebsite
php artisan typicms:install
Go to http://mywebsite.test/admin and log in.
Assets are bundled with Vite. Install Bun, then run:
Install npm packages:
bun install
Start the development server:
bun run dev
Build for production:
bun run prod
config/typicms.php. The first key of this array is the main locale and must match the locale defined in config/app.php.main_locale_in_url in config/typicms.php to true or false depending on whether you want the main locale to appear in the URL.The following example installs the News module. After these steps, the module will appear in the admin sidebar.
Install the module with Composer:
composer require typicms/news
Add TypiCMS\Modules\News\Providers\ModuleServiceProvider::class, to bootstrap/providers.php, in the TypiCMS Modules Service Providers section.
Publish the views and migrations:
php artisan vendor:publish
Run the database migration:
php artisan migrate
To generate a new custom module called Cats:
Create the module:
php artisan typicms:create cats
The module is created in /Modules/Cats. Customize it as needed.
Add TypiCMS\Modules\Cats\Providers\ModuleServiceProvider::class, to bootstrap/providers.php, in the TypiCMS Modules Service Providers section.
Run the migration:
php artisan migrate
Each module can be published to be tracked by git and customized locally.
Pages are nestable with drag and drop. On a drop, URIs are regenerated and saved in the database. Each translation of a page has its own route. A page can be linked to a module and can have multiple sections, each using its own template.
The admin panel includes a searchable pages tree with keyboard-accessible expand/collapse controls.
Each menu has nestable entries. An entry can link to a page or a URL, and can optionally link to a specific section of a page.
Render an HTML menu in a Blade file with @menu('menuname').
Projects have categories. Project URLs follow this pattern: /en/projects/category-slug/project-slug.
Tags support polymorphic many-to-many relations, so they can be linked to any module. The tag input uses Tom Select.
Events have starting and ending dates.
News module.
Frontend contact form with admin-side records management. Notifications are sent to the visitor and the webmaster.
A partner has a logo, website URL, title, and body content.
The file manager lets you upload and organize images, documents, and folders. File uploads use Uppy with drag-and-drop support and a compression step before upload. Images can be cropped using Cropper.js. SVG files are sanitized on upload. Images can be swapped in place from the file manager.
To store original images on a remote service such as Amazon S3 while serving cropped images from local disk, set FILESYSTEM_DRIVER=s3 in your .env file and configure croppa.php accordingly.
Admins can authenticate with a passkey or a one-time password in addition to a standard password. User registration can be enabled in the settings panel (/admin/settings). Roles and permissions are managed with spatie/laravel-permission. Admins can impersonate users.
Blocks let you display custom content in your views.
Render a block in Blade with Blocks::render('blockname') or @block('blockname').
Translations can be managed in the database via the admin panel (/admin/translations).
Retrieve a translation using the standard Laravel helpers: __('Key'), trans('Key'), or @lang('Key').
A sitemap is generated automatically from all published pages. It is available at /sitemap.xml.
Manage the website title, logo, and other global options in the settings panel.
Create, update, delete, online, and offline events are logged in the database. The most recent records are shown on the back-office dashboard.
php artisan typicms:install
php artisan typicms:database
This command is called automatically by typicms:install.
php artisan typicms:user
To customize a module — for example, to add fields or a relation — publish it:
php artisan typicms:publish <modulename>
This will:
/Modules/<Modulename>.composer remove typicms/<modulename>.Once published, the module lives in /Modules/<Modulename> and is tracked by git, so changes are preserved across composer update runs.
Please see CHANGELOG for more information on what has changed.
Please see CONTRIBUTING for details.
TypiCMS is open-source software licensed under the MIT license.