2017 © Pedro Peláez
 

library skipper

A Laravel Admin Package

image

anla/skipper

A Laravel Admin Package

  • Tuesday, December 6, 2016
  • by Anla
  • Repository
  • 1 Watchers
  • 1 Stars
  • 20 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 1 Versions
  • 0 % Grown

The README.md

Laravel Admin & BREAD System (Browse, Read, Edit, Add, & Delete), made for Laravel 5.3., (*1)

After creating your new Laravel application you can include the Skipper package with the following command:, (*2)

composer require anla/skipper dev-master

Next make sure to create a new database and add your database credentials to your .env file:, (*3)

DB_HOST=localhost
DB_DATABASE=homestead
DB_USERNAME=homestead
DB_PASSWORD=secret

Add the Skipper service provider to the config/app.php file in the providers array:, (*4)

'providers' => [
    // Laravel Framework Service Providers...
    //...

    // Package Service Providers
    Anla\Skipper\SkipperServiceProvider::class,
    // ...

    // Application Service Providers
    // ...
],

Lastly, we can install skipper by running, (*5)

php artisan skipper:install

Note: If you don't have composer installed and use composer.phar instead, run the following 2 commands:, (*6)

composer.phar dump-autoload
php artisan db:seed

And we're all good to go!, (*7)

Start up a local development server with php artisan serve And, visit http://localhost:8000/admin and you can login with the following login credentials:, (*8)

**email:** z@z.com
**password:** skipper

The Versions

06/12 2016

dev-master

9999999-dev https://zanjs.github.io/skipper/

A Laravel Admin Package

  Sources   Download

MIT

The Requires

 

The Development Requires

by Anla sheng

laravel admin panel