angel/testimonials

此软件包的最新版本(0.0.4)没有可用的许可证信息。

0.0.4 2014-11-12 19:24 UTC

This package is not auto-updated.

Last update: 2024-09-24 01:58:27 UTC


README

这是一个Angel CMS的模块。Angel CMS.

安装

将以下需求添加到您的composer.json文件中

"repositories": [
	{
		"type": "vcs",
		"url": "https://github.com/CharlesAV/angel-testimonials"
	}
],
"require": {
	"angel/testimonials": "dev-master"
},

运行composer update来安装此软件包。

app/config/app.php文件中的providers数组中添加以下服务提供者

'Angel\Testimonials\TestimonialsServiceProvider'

运行以下命令

php artisan migrate --package="angel/testimonials"  # Run the migrations

打开app/config/packages/angel/core/config.php文件,并将testimonials路由添加到menu数组中

'menu' => array(
	'Pages' => 'pages',
	'Menus' => 'menus',
	'Testimonials' => 'testimonials',  // <--- Add this line
	'Users' => 'users',
	'Settings' => 'settings'
),