Admin pack for laravel

Maintainers

Package info

github.com/simbamahaba/upepo

Language:CSS

Type:project

pkg:composer/simbamahaba/upepo

Statistics

Installs: 12

Dependents: 0

Suggesters: 0

Stars: 1

Open Issues: 0

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

This package is auto-updated.

Last update: 2026-03-01 00:36:39 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,