wave8/factotum-base

Factotum V8 - Base Module

Installs: 37

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 0

Forks: 0

Open Issues: 0

pkg:composer/wave8/factotum-base

v1.7.1 2025-12-24 09:02 UTC

This package is auto-updated.

Last update: 2025-12-24 09:03:13 UTC


README


Logo

Factotum CMS - Base Module

php laravel base-module

maintained with ❤️ by

Logo

Introduction

Factotum is a Laravel-based open source CMS and application framework. It provides a modular architecture, a user-friendly interface, and a set of tools to build and manage web applications efficiently.

This repository contains the base module of Factotum, which includes essential features and functionalities required for building applications, as authentication, roles and permissions, media handling and more.

Requirements and Dependencies

  • Laravel 12+
  • PHP 8.4+

Install

Laravel Setup

  1. Install a fresh Laravel application and configure your .env file with the database keys.
# composer
composer create-project laravel/laravel example-app
  1. Require Factotum Base Module as a composer dependency and publish the configuration file.
    The configuration file is used to seed the initial data, feel free to change its values
# composer
composer require wave8/factotum-base

# config
php artisan vendor:publish --tag=factotum-base-config
  1. On the default User laravel model, you need to extend the \Wave8\Factotum\Base\Models\User model.
app/Models/User.php

-class User extends Authenticatable
+class User extends \Wave8\Factotum\Base\Models\User
{
    /** @use HasFactory<\Database\Factories\UserFactory> */
    use HasFactory, Notifiable;
  1. Install the Factotum Base Module. This procedure will run the migrations, seed the initial data and publish the assets.
# php
php artisan factotum-base:install

Please note

Some vendor config files, are published in an updated version during the installation, i.e.

  • spatie/laravel-query-builder

Changelog

Please see CHANGELOG for more information what has changed recently.

Releases

Please see ROADMAP v2 for more information about the next releases.

Contributing

Feel free to open issues and submit pull requests.

Security

If you discover any security related issues, please feel free to open issues and submit pull requests.

Credits

License

The MIT License (MIT). Please see License File for more information.