Download the PHP package jameron/admin without Composer
On this page you can find all versions of the php package jameron/admin. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download jameron/admin
More information about jameron/admin
Files in jameron/admin
Package admin
Short Description Admin panel for mananging users, roles, and permissions.
License proprietary
Homepage http://cjmacfarlane.com
Informations about the package admin
This package has been built to work with Laravel 5.4.33 and later. Some older versions may not be compatible. If you are starting fresh, create your laravel application first thing and install the regulator package.
1) Add the package to your compose.json file:
**NOTE Laravel 5.5+ users there is auto-discovery so you can ignore steps 2 and 3
2) Update your providers:
3) Update your Facades:
4) Publish the config: (this moves the config file from the vendor directory to the laravel config/ directory)
5) Install Bootstrap 4 and Popper.js (Bootstrap needs popper.js)
First uninstall that old bootstrap 3 sass
Then install bootstrap 4 and its dependency popper.js
open up resources/assets/js/bootstrap.js
and add this line
6) Update the layout file both of these views:
to use
Optionally if you would like to use the Admin Bootstrap 4 login form delete the form that comes with Laravel and add in the Admin sign_in view partial in the container. The login.blade file might look like this:
7) Update webpack config
8) Update your resources/assets/scss/app.scss
9) If you want a sidenav bar you can edit the config/admin.php file with your buttons list on a per role basis, don't forget that you may need to run when you make changes.
To add the side nav bar to your view file insert the partial like so:
10) Update your reset password view file to use the bootstrap 4 version provided by this package
Delete everything between the @section @endsection and make sure that the view layout you extend uses the admin namespace and you import the bootstrap 4 reset password html in the partial.
The finished file should look like this:
Update your reset password form view file:
11) Update your PasswordController redirect to path.
12) Update your paginator class to use Bootstrap 4
Select the option that shows this:
Then open up your bootsstrap/app.php and add these lines:
Illuminate\Pagination\AbstractPaginator::defaultView("pagination::bootstrap-4"); Illuminate\Pagination\AbstractPaginator::defaultSimpleView("pagination::simple-bootstrap-4");
in you file update this line to this: