kapilpatel20 / bvi-news
带有CRUD选项的新闻管理
dev-master
2017-08-24 12:30 UTC
Requires
This package is not auto-updated.
Last update: 2024-09-24 17:47:40 UTC
README
文档* 运行以下命令从composer安装
composer require kapilpatel20/bvi-news dev-master
在AppKernel.php的registerBundles函数中添加bundle
new BviNewsBundle\BviNewsBundle(),
如果未添加KnpPaginatorBundle,请在AppKernel.php文件中添加
new Knp\Bundle\PaginatorBundle\KnpPaginatorBundle(),
按照以下内容在app/config/routing.yml中导出路由文件
bvi_news: resource: "@BviNewsBundle/Resources/config/routing.yml" prefix: /news
使用以下命令安装资源
php app/console assets:install
使用以下命令更新数据库模式
php app/console doctrine:schema:update --force