Skip to content

francistito/cms

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

28 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

laravel website cms

Installation

Step 1

Require the package with composer using the following command:

composer require nextbytetz/website-cms

Step 2

The service provider will automatically get registered. Or you may manually add the service provider in your config/app.php file:

'providers' => [
    // ...
    Nextbyte\Cms\CmsServiceProvider::class,
];

Step 3

You can publish the config file with this following command:

php artisan vendor:publish --provider="Nextbyte\Cms\CmsServiceProvider"

You can get package updates by simply use composer update

composer update nextbytetz/website-cms