kapilpatel20/bvi-cms

Cms page Management with crud options

Installs: 12

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 2

Forks: 0

Open Issues: 0

Language:HTML

Type:symfony-bundle

dev-master 2017-08-24 12:29 UTC

This package is not auto-updated.

Last update: 2024-04-23 14:45:12 UTC


README

Documentation*

Run below command to install from composer

composer require kapilpatel20/bvi-cms dev-master

Add bundle in AppKernel.php in registerBundles function

new BviCmsBundle\BviCmsBundle(),

if KnpPaginatorBundle not added then please do add in AppKernel.php file

new Knp\Bundle\PaginatorBundle\KnpPaginatorBundle(),

Export route file in your app/config/routing.yml as below

bvi_cms: resource: "@BviCmsBundle/Resources/config/routing.yml" prefix: /cms

Install assets using below command

php app/console assets:install

Update your db schema using below command

php app/console doctrine:schema:update --force