bpocallaghan/changelogs
最新稳定版本:0.0.3
Composer 安装命令:
composer require bpocallaghan/changelogs
包简介
Add changelogs to your laravel admin project - https://github.com/bpocallaghan/laravel-admin-starter
README 文档
README
Add changelogs to your laravel admin project. This will allow you to track the changes of your application.
Installation
Update your project's composer.json file.
composer require bpocallaghan/changelogs
Usage
Register the routes in the routes/vendor.php file.
- Website
Route::resource('changelog', 'Changelogs\Controllers\Website\ChangelogsController'); - Admin
Route::resource('settings/changelogs', 'Changelogs\Controllers\Admin\ChangelogsController');
Commands
php artisan changelogs:publish
This will copy the database/seeds and database/migrations to your application.
Remember to add the $this->call(ChangelogTableSeeder::class); in the DatabaseSeeder.php
php artisan changelogs:publish --files=all
This will copy the model, views and controller to their respective directories.
Please note when you execute the above command. You need to update your routes.
// website Route::get('/changelog', 'ChangelogsController@index'); // admin/settings Route::resource('changelogs', 'ChangelogsController');
Demo
This is being used inside Laravel Admin Starter project.
TODO
- When the controller gets published - the vendor's views will be loaded (manually need to be updated)
- rename
changelogs::indexTOsettings.changelogs.index
统计信息
- 总下载量: 4.21k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 5
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2017-10-27