2017 © Pedro Peláez
 

library softadmin

Admin Panel for laravel by software Bangladesh

image

sbd/softadmin

Admin Panel for laravel by software Bangladesh

  • Sunday, December 25, 2016
  • by softwarebd
  • Repository
  • 1 Watchers
  • 0 Stars
  • 21 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 2 Versions
  • 0 % Grown

The README.md

SoftAdmin

Admin Panel for laravel by software Bangladesh, (*1)


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

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

composer require sbd/softadmin

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

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

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

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

    // Package Service Providers
    SBD\Softadmin\SoftadminServiceProvider::class,
    // ...

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

Lastly, we can install softadmin. You can do this either with or without dummy data. The dummy data will include 1 admin account (if no users already exists), 1 demo page, 4 demo posts, 2 categories and 7 settings., (*6)

To install Softadmin without dummy simply run, (*7)

php artisan softadmin:install

If you prefer installing it with dummy run, (*8)

php artisan softadmin:install --with-dummy

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

Start up a local development server with php artisan serve And, visit http://localhost:8000/admin., (*10)

If you did go ahead with the dummy data, a user should have been created for you with the following login credentials:, (*11)

email: admin@admin.com
password: password, (*12)

NOTE: Please note that a dummy user is only created if there are no current users in your database., (*13)

If you did not go with the dummy user, you may wish to assign admin priveleges to an existing user. This can easily be done by running this command:, (*14)

php artisan softadmin:admin your@email.com

If you did not install the dummy data and you wish to create a new admin user you can pass the --create flag, like so:, (*15)

php artisan softadmin:admin your@email.com --create

And you will be prompted for the users name and password., (*16)

The Versions

25/12 2016

dev-master

9999999-dev https://www.softwarebd.ml/softadmin/

Admin Panel for laravel by software Bangladesh

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel admin admin panel user controller

25/12 2016