Add changelogs to your laravel admin project - https://github.com/bpocallaghan/laravel-admin-starter
bpocallaghan/changelogs is a Laravel package for add changelogs to your laravel admin project - https://github.com/bpocallaghan/laravel-admin-starter.
It currently has 5 GitHub stars and 4.213 downloads on Packagist (latest version 0.0.3).
Install it with composer require bpocallaghan/changelogs.
Discover more Laravel packages by bpocallaghan
or browse all Laravel packages to compare alternatives.
Last updated
Add changelogs to your laravel admin project. This will allow you to track the changes of your application.
Update your project's composer.json file.
composer require bpocallaghan/changelogs
Register the routes in the routes/vendor.php file.
Route::resource('changelog', 'Changelogs\Controllers\Website\ChangelogsController');Route::resource('settings/changelogs', 'Changelogs\Controllers\Admin\ChangelogsController');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');
This is being used inside Laravel Admin Starter project.
changelogs::index TO settings.changelogs.index