Admin pack for laravel

Installs: 9

Dependents: 0

Suggesters: 0

Security: 0

Stars: 1

Watchers: 1

Forks: 0

Open Issues: 0

Language:CSS

Type:project

v1.0.1 2022-05-27 07:00 UTC

This package is auto-updated.

Last update: 2024-04-29 04:59:40 UTC


README

Admin Panel for Laravel 8.*

Installation

composer require simbamahaba/upepo
  1. Publish vendors files php artisan vendor:publish

  2. Before installing the migrations, delete the shopping cart migration already published, since Upepo has its own migration for it.

  3. Run the php artisan migrate.

  4. To the App\Http\Kernel.php, add the following to the application's route middleware:

'not.for.admin' => \App\Http\Middleware\RedirectIfAdmin::class,
'admin.only' => \App\Http\Middleware\RedirectIfNotAdmin::class,
'customer' => \App\Http\Middleware\RedirectIfCustomer::class,
'customer.email.verified' => \App\Http\Middleware\EnsureCustomerEmailIsVerified::class,
'loggedcustomer' => \App\Http\Middleware\RedirectIfNotCustomer::class,
'verifiedcustomer' => \App\Http\Middleware\NotVerifiedCustomer::class,