1- # Backpack\MenuManager
1+ # Backpack\MenuCRUD
22
33[ ![ Latest Version on Packagist] [ ico-version ]] [ link-packagist ]
44[ ![ Software License] [ ico-license ]] ( LICENSE.md )
@@ -26,16 +26,20 @@ The only PRO of installing it as a package is that you may benefit from updates.
2626#### Intallation type (A) - download
2727
2828
29- 1 ) [ Download the latest build] ( https://github.com/Laravel-Backpack/menumanager /archive/master.zip ) .
29+ 1 ) [ Download the latest build] ( https://github.com/Laravel-Backpack/MenuCRUD /archive/master.zip ) .
3030
31312 ) Paste the 'app' folder over your 'app' folder. No overwrite warnings should come up.
3232
33- 3 ) Run the migration to have the database table we need:
33+ 3 ) Replace all mentions of 'Backpack\MenuCRUD\app' in the pasted files with your application's namespace ('App' if you haven't changed it):
34+ - app/Http/Controllers/Admin/MenuItemCrudController.php
35+ - app/Models/MenuItem.php
36+
37+ 4 ) Run the migration to have the database table we need:
3438```
3539php artisan migrate
3640```
3741
38- 4 ) Add MenuCRUD to your routes file:
42+ 5 ) Add MenuCRUD to your routes file:
3943
4044```
4145Route::group(['prefix' => 'admin', 'middleware' => ['web', 'auth'], 'namespace' => 'Admin'], function () {
@@ -44,7 +48,7 @@ Route::group(['prefix' => 'admin', 'middleware' => ['web', 'auth'], 'namespace'
4448});
4549```
4650
47- 5 ) [ optional] Add a menu item for it in resources/views/vendor/backpack/base/inc/sidebar.blade.php or menu.blade.php:
51+ 6 ) [ optional] Add a menu item for it in resources/views/vendor/backpack/base/inc/sidebar.blade.php or menu.blade.php:
4852
4953``` html
5054<li ><a href =" {{ url('admin/menu-item') }}" ><i class =" fa fa-list" ></i > <span >Menu</span ></a ></li >
@@ -57,19 +61,19 @@ Route::group(['prefix' => 'admin', 'middleware' => ['web', 'auth'], 'namespace'
57611 ) In your terminal, run:
5862
5963``` bash
60- $ composer require backpack/menumanager
64+ $ composer require backpack/MenuCRUD
6165```
6266
63672 ) Then add the service providers to your config/app.php file:
6468
6569```
66- 'Backpack\MenuManager\MenuManagerServiceProvider ',
70+ 'Backpack\MenuCRUD\MenuCRUDServiceProvider ',
6771```
6872
69733 ) Publish the migration:
7074
7175```
72- php artisan vendor:publish --provider="Backpack\MenuManager\MenuManagerServiceProvider "
76+ php artisan vendor:publish --provider="Backpack\MenuCRUD\MenuCRUDServiceProvider "
7377```
7478
75794 ) Run the migration to have the database table we need:
@@ -113,17 +117,17 @@ If you discover any security related issues, please email
[email protected] inst
113117
114118The MIT License (MIT). Please see [ License File] ( LICENSE.md ) for more information.
115119
116- [ ico-version ] : https://img.shields.io/packagist/v/backpack/MenuManager .svg?style=flat-square
120+ [ ico-version ] : https://img.shields.io/packagist/v/backpack/MenuCRUD .svg?style=flat-square
117121[ ico-license ] : https://img.shields.io/badge/license-MIT-brightgreen.svg?style=flat-square
118- [ ico-travis ] : https://img.shields.io/travis/Laravel-Backpack/MenuManager /master.svg?style=flat-square
119- [ ico-scrutinizer ] : https://img.shields.io/scrutinizer/coverage/g/Laravel-Backpack/MenuManager .svg?style=flat-square
120- [ ico-code-quality ] : https://img.shields.io/scrutinizer/g/Laravel-Backpack/MenuManager .svg?style=flat-square
121- [ ico-downloads ] : https://img.shields.io/packagist/dt/backpack/MenuManager .svg?style=flat-square
122-
123- [ link-packagist ] : https://packagist.org/packages/backpack/MenuManager
124- [ link-travis ] : https://travis-ci.org/Laravel-Backpack/MenuManager
125- [ link-scrutinizer ] : https://scrutinizer-ci.com/g/Laravel-Backpack/MenuManager /code-structure
126- [ link-code-quality ] : https://scrutinizer-ci.com/g/Laravel-Backpack/MenuManager
127- [ link-downloads ] : https://packagist.org/packages/backpack/MenuManager
122+ [ ico-travis ] : https://img.shields.io/travis/Laravel-Backpack/MenuCRUD /master.svg?style=flat-square
123+ [ ico-scrutinizer ] : https://img.shields.io/scrutinizer/coverage/g/Laravel-Backpack/MenuCRUD .svg?style=flat-square
124+ [ ico-code-quality ] : https://img.shields.io/scrutinizer/g/Laravel-Backpack/MenuCRUD .svg?style=flat-square
125+ [ ico-downloads ] : https://img.shields.io/packagist/dt/backpack/MenuCRUD .svg?style=flat-square
126+
127+ [ link-packagist ] : https://packagist.org/packages/backpack/MenuCRUD
128+ [ link-travis ] : https://travis-ci.org/Laravel-Backpack/MenuCRUD
129+ [ link-scrutinizer ] : https://scrutinizer-ci.com/g/Laravel-Backpack/MenuCRUD /code-structure
130+ [ link-code-quality ] : https://scrutinizer-ci.com/g/Laravel-Backpack/MenuCRUD
131+ [ link-downloads ] : https://packagist.org/packages/backpack/MenuCRUD
128132[ link-author ] : https://github.com/tabacitu
129133[ link-contributors ] : ../../contributors
0 commit comments