nextbytetz/website-cms

this id for website cms

Installs: 20

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Language:CSS

dev-develop 2021-02-02 10:38 UTC

This package is auto-updated.

Last update: 2024-05-29 04:55:35 UTC


README

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