2017 © Pedro Peláez
 

library admin

Laravel admin panel mockup

image

verumconsilium/admin

Laravel admin panel mockup

  • Tuesday, April 18, 2017
  • by Verum Consilum
  • Repository
  • 0 Watchers
  • 0 Stars
  • 0 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 1 Versions
  • 0 % Grown

The README.md

Laravel Admin Panel

This package is intended to help with the speed of development of new sites that require some type of administration panel, (*1)

Feel free to use this package if it is of any use to you, (*2)

Installation

The admin panel works on top of Laravel's Authentication so in order to use the package you will need to create the Laravel Authentication with the next command:, (*3)

php artisan make:auth

To install the package first you'll need to require it trough composer, (*4)

composer require verumconsilium/admin

Once you've installed the package the next step is to register the Service Provider. Add the next element to the providers array in your config/app.php file, (*5)

'providers' => [

  VerumConsilium\Admin\AdminServiceProvider::class,

]

The Versions