robinthijsen/laravel-cms

A Simple Laravel CMS package using livewire

v0.1.5 2025-01-12 11:02 UTC

README

Latest Version on Packagist GitHub Tests Action Status GitHub Code Style Action Status Total Downloads

Laravel Package CMS is a package that allows you to create a CMS for your Laravel application.

Installation

First install the package via composer:

composer require robinthijsen/laravel-cms

Then install the package

php artisan cms:install

This will publish the config file to config/cms.php.
Publish the migrations and ask to run them.
And add the service provider to your app.

Usage

After that a new route is available at /admin. First you will need to login with the default credentials:

$email = config('cms.credentials.email');
$password = config('cms.credentials.password');

These are defined in the config file. You can change it in the admin panel, as well as in the config file and in your .env file.

Hope this package is useful for you!

Changelog

Please see CHANGELOG for more information on what has changed recently.

Contributing

Please see CONTRIBUTING for details.

Security Vulnerabilities

Please review our security policy on how to report security vulnerabilities.

License

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