phpsa / cams-gallery
A Gallery component for the Phpsa CAMS system
Requires
- php: >=7.0
- illuminate/support: ~5.8.0
Requires (Dev)
- orchestra/testbench: ~3.7.0
- phpunit/phpunit: ^7.0
This package is auto-updated.
Last update: 2024-11-21 21:19:39 UTC
README
Package description: CHANGE ME
Installation
Requires CAMS (Content Assets Managment System) package from phsa/datastore
Install via composer
composer require phpsa/cams-gallery
Register Service Provider
Note! This and next step are optional if you use laravel>=5.5 with package auto discovery feature.
Add service provider to config/app.php
in providers
section
Phpsa\CamsGallery\ServiceProvider::class,
Register Facade
Register package facade in config/app.php
in aliases
section
Phpsa\CamsGallery\Facades\CamsGallery::class,
Edit Datastore Configuration File
Edit the 'configs/datastore.php' config file and add the following to the assets config:
Phpsa\CamsGallery\Ams\Gallery\CategoryAsset::class, Phpsa\CamsGallery\Ams\Gallery\PageAsset::class
Usage
Gallery admin is now available in the admin panel under the ams management menu Views can be edited by overwriting the view files by placing them in ...
Security
If you discover any security related issues, please email vxdhost@gmail.com instead of using the issue tracker.
Credits
This package is bootstrapped with the help of melihovv/laravel-package-generator.