Download the PHP package guruji/dashboard without Composer

On this page you can find all versions of the php package guruji/dashboard. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package dashboard

SB Admin 2 dashboard with extra login pannel by getting the https://startbootstrap.com/themes/sb-admin-2/

Issues Stars

These are the following steps to be followed up, and after installing this package you to be getting the following stuffs:

1. merely login & dashboard of the backend of your project where you may make your own pages into your views aacording to your needs. Here is the screenshot https://prnt.sc/rfhreq

2. you are to get one helper where you may manage your theme project's logo, and facebook, twitter, Linked, Instagram , Address, and Contact email fields that you to be geeting globally into your project.

3. Saperately routes' file called web_admin.php into your routes(folder) so that where youre to manage your backends routes.

4. And rest of the files, pages, buttons, and form you may get from https://startbootstrap.com/themes/sb-admin-2/

5. if you still have any single query while installing and availing the package feel free to leave the annotations here, I will entirely help you

6. I still work to serve you my best.

Note: your frontend login will be as laravel provides, roles & permission package to be installed with this dashboard that you may use. And after installing this package, make sure to check and go to the files and folders are:

1. resources/views

#2. routes/web_admin.php(where your admin means backend's routes are available).
#3. config/constant.php(where your constant get defined for the users' permission).
#4. Controllers/Admin(where your backend's controllers are available).
#5. Controllers/Admin/Auth(where your backaend's authenticationss controllers are available).

Step:1, Run the following commands

php artisan make:auth

composer require guruji/dashboard

composer require spatie/laravel-permission

composer require laravelcollective/html

php artisan vendor:publish --provider="Guruji\Dashboard\DashboardServiceProvider"
php artisan vendor:publish --provider="Spatie\Permission\PermissionServiceProvider" --tag="migrations"

if you also want to changes then you can fire bellow command and get config file in config/permission.php.

php artisan vendor:publish --provider="Spatie\Permission\PermissionServiceProvider" --tag="config"

Step:2, Add into config/auth.php

'web_admin' => [ 'driver' => 'session', 'provider' => 'users', ],

Step:3, Add into User.php model

  use Spatie\Permission\Traits\HasRoles;

  use  HasRoles;

Step:4, Add into users_table

use Spatie\Permission\Models\Role;

Step:5, Now open config/app.php file and add service provider and aliase into config/app.php

    'providers' => [

        ....

         Guruji\Dashboard\DashboardServiceProvider::class,
         Spatie\Permission\PermissionServiceProvider::class,
         Collective\Html\HtmlServiceProvider::class,

    ],

    'aliases' => [

        ....

        'Form' => Collective\Html\FormFacade::class,
        'Html' => Collective\Html\HtmlFacade::class,

    ],

Step:6 Add into app/Http/Kernel.php

          'web_admin' => [
                \App\Http\Middleware\EncryptCookies::class,
                \Illuminate\Cookie\Middleware\AddQueuedCookiesToResponse::class,
                \Illuminate\Session\Middleware\StartSession::class,
                // \Illuminate\Session\Middleware\AuthenticateSession::class,
                \Illuminate\View\Middleware\ShareErrorsFromSession::class,
                \App\Http\Middleware\VerifyCsrfToken::class,
                \Illuminate\Routing\Middleware\SubstituteBindings::class,
            ],

            ....
        protected $routeMiddleware = [
            ....
            'role' => \Spatie\Permission\Middlewares\RoleMiddleware::class,
            'permission' => \Spatie\Permission\Middlewares\PermissionMiddleware::class,
        ]
        ....

Step:7 Add into RoutServiceProvider.php

             public function map()
            {

                $this->mapWebAdminRoutes();

            }

             protected function mapWebAdminRoutes()
             {
                Route::middleware('web_admin')
                     ->namespace($this->namespace)
                     ->group(base_path('routes/web_admin.php'));
                foreach (glob(app_path() . '/Helpers/*.php') as $file) {
                    require_once($file);
                }
             }

Step:8 Run

php artisan migrate
php artisan db:seed --class=AdminSeeder

Step:9, And, here we go!

  http://localhost/..your_project.../password/reset
  http://localhost/..your_project.../admin/login

     id: [email protected]
     password: password 

Thank You! Build Splendid Stuffs!


All versions of dashboard with dependencies

PHP Build Version
Package Version
No informations.
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package guruji/dashboard contains the following files

Loading the files please wait ....