creativehandles/web-pages

Page content management

0.1.16 2022-10-24 12:16 UTC

README

Latest Version on Packagist Total Downloads GitHub Actions

Installation

You can install the package via composer:

composer require creativehandles/web-pages

Usage

Publish required files (migrations,routes,views etc) to CORE CMS

php artisan vendor:publish --provider="Creativehandles\WebPages\WebPagesServiceProvider"

Add following environment variable. This is a global variable for all packages.Recommends to have it in CORE-CMS. DO NOT CHANGE

MEDIABLE_DISK=mediable

Migrate database tables

php artisan migrate

Config file

    "api" => [
        'route_prefix' => 'api/v1/',
        'middleware' => ['api']
    ],
    "web" => [
        'route_prefix' => 'plugins/',
        'middleware' => ['web']
    ],

Testing

composer test

Changelog

Please see CHANGELOG for more information what has changed recently.

Contributing

Please see CONTRIBUTING for details.

Security

If you discover any security related issues, please email deemantha@creativehandles.com instead of using the issue tracker.

Credits

License

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

Laravel Package Boilerplate

This package was generated using the Laravel Package Boilerplate.