uccello/impersonate

An Uccello tool to allow an admin to impersonate a user.

Installs: 123

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 1

pkg:composer/uccello/impersonate

v1.0.0 2021-02-09 15:40 UTC

This package is auto-updated.

Last update: 2025-09-10 02:46:31 UTC


README

composer require uccello/impersonate

Add Blade sections

Add button in User detail view

Create a file located at resources/views/uccello/modules/user/detail/main.blade.php and add the following code:

@extends('uccello::modules.default.detail.main')

@section('custom-top-action-buttons')
    @include('impersonate::button')
@append

Add message bar

Add the following code into the file located at resources/layouts/uccello.blade.php:

@section('after-navbar-header')
    @include('impersonate::message')
@append