🖥️
Adminetic
  • Introduction
  • What is Adminetic
  • Prerequisites
  • Installation
  • Configurations
  • Modules
    • User Management
    • Role Management
    • Settings
    • Preference
    • Activity
  • Commands
    • CRUD Generator
    • Permission Generator
    • Repo Generator
    • Superuser Generator
    • Dummy Generator
    • API Generator
    • Helper Command
  • Services
    • OAuth
    • MyMenu
    • MyDashboard
    • 😎Bouncer
    • 💻CLI
  • Change Logs
  • Github Repo
  • Addons
    • Announcement
    • Contact
    • Website
    • Notify
    • Backup
    • Google Analytics
    • Business Hour
    • Newsletter
  • Example Walkthrough
Powered by GitBook
On this page
  • What is adminetic bouncer ?
  • How can we use bouncer ?
  • Verified page session management.
  • Demo

Was this helpful?

  1. Services

Bouncer

Get extra layer of security.

If you want an extra layer of security where a page is protected by custom password than you can use adminetic bouncer.

What is adminetic bouncer ?

Adminetic Bouncer is extra layer security middleware where a page can be protected by password authentication system. Think of it as VIP privilege page where only user who knows a password can access.

How can we use bouncer ?

On your route file. Use bouncer middleware

Route::get('bouncer-protected-page',function(){
  // Some action
})->middleware('bouncer');

Default bouncer credential.

By default bouncer middleware has credential adminetic. You can change default password by changing it on config/adminetic.php

'default_bouncer_credential' => 'adminetic',

Custom bouncer credential

If you want to use custom credential for each page use can pass credential to middleware as follows :-

Route::get('bouncer-protected-page',function(){
  // Some action
})->middleware('custom_psw');

Here bouncer-protected-page has custom bouncer credential as custom_psw.

Verified page session management.

Once page is verified you won't have to get authenticated again as long as your session is alive.

Demo

PreviousMyDashboardNextCLI

Last updated 3 years ago

Was this helpful?

😎
Bouncer authentication page.
Page cover image