nckg/laravel-impersonate

Easily impersonate any user in a Laravel Application
36,922 11
Install
composer require nckg/laravel-impersonate
Latest Version:4.0.1
PHP:^7.2|^8.0
License:MIT
Last Updated:Apr 21, 2021
Links: GitHub  ·  Packagist
Maintainer: nckg

Impersonate

Build Status Packagist Packagist

Introduction

Easily impersonate any user in your Laravel Application

Installation

You can install the package via composer:

composer require nckg/laravel-impersonate

Add following code to your user model:

    class User
    {
        use \Nckg\Impersonate\Traits\CanImpersonate;
    }

Add following code to your routes file:

    Route::get('users/{id}/impersonate', function ($id) {
        \Auth::user()->setImpersonating($id);
        return redirect()->back();
    });
    Route::get('users/stop-impersonate', function () {
        \Auth::user()->stopImpersonating();
        return redirect()->back();
    });

If you are using Laravel you can add the middleware to your middleware providers

// app/Http/Kernel.php
/**
 * The application's global HTTP middleware stack.
 *
 * @var array
 */
protected $middleware = [
    ...
    \Nckg\Impersonate\Impersonate::class,
];

Testing

composer test

License

The MIT License (MIT).

Related Packages

gabrieloliverio/laravel5-generators

Database metadata-based generators for Laravel 5

1
erirk/paypalpayment

laravel-paypalpayment is simple package help you process direct credit card paym...

0
doctrine/dbal

Powerful PHP database abstraction layer (DBAL) with many features for database s...

631,580,251 9,707
laravel/framework

The Laravel Framework.

576,155,700 34,907
laravel/tinker

Powerful REPL for the Laravel framework.

485,678,092 7,440