kapilpatel20 / bvi-news
News Management with crud options
Installs: 5
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 2
Forks: 0
Open Issues: 0
Language:HTML
Type:symfony-bundle
Requires
This package is not auto-updated.
Last update: 2025-01-14 19:19:12 UTC
README
Documentation* Run below command to install from composer
composer require kapilpatel20/bvi-news dev-master
Add bundle in AppKernel.php in registerBundles function
new BviNewsBundle\BviNewsBundle(),
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_news: resource: "@BviNewsBundle/Resources/config/routing.yml" prefix: /news
Install assets using below command
php app/console assets:install
Update your db schema using below command
php app/console doctrine:schema:update --force