Quick Start

 

This package was created for my needs during my various projects, wanting to go faster and faster and not being a fan of CMS, I decided to make myself a back office (an administration) according to my needs and applying my own conventions for not reinventing the wheel. You must use a versioning system like git in order to be able to rollback as needed because the package modifies and adds certain files. All files are generated in your working folder and can be changed at your convenience. The package just serves for file generator.

In this document, you will learn how to install the package, and setup it.

Installing the Package

Requirements

This package requires at least PHP 8.0.2

Version Compatibility

Laravel Package Version
9.0 master composer require guysolamour/administrable
8.0 5.x composer require guysolamour/administrable ^5.5
7.0 3.x composer require guysolamour/administrable ^3.0

The service provider will be auto-discovered for Laravel 5.5 and above. Alternatively; you may manually register the service provider in your configuration config/app.php file:

'providers' => array(
    // ...
    Guysplamour\Administrable\ServiceProvider::class,
),