nextbytetz / website-cms
this id for website cms
dev-develop
2021-02-02 10:38 UTC
Requires
- laravelcollective/html: ^6.0@dev
This package is auto-updated.
Last update: 2024-10-29 06:00:08 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