genealabs/laravel-impersonator
最新稳定版本:10.0.0
Composer 安装命令:
composer require genealabs/laravel-impersonator
包简介
Impersonate users in your Laravel and Nova apps.
README 文档
README
Impersonator for Laravel
Supporting This Package
This is an MIT-licensed open source project with its ongoing development made possible by the support of the community. If you'd like to support this, and our other packages, please consider becoming a backer or sponsor on Patreon.
Pre-requisites
- Laravel 8.0+
- PHP 7.3+
Installation
composer require genealabs/laravel-impersonator
Configuration
genealabs-laravel-impersonator.layout: master blade layout view for your application (defaultlayouts.app).genealabs-laravel-impersonator.content-section: name of content section in master layout blade view (defaultcontent).genealabs-laravel-impersonator.user-model: user model of your application (defaultconfig('auth.providers.users.model')).genealabs-laravel-impersonator.middleware: the middleware to use for the impersonatee routes (default:['web', 'auth']). You may specifyonlyorexceptparameters. E.g.['web', 'auth', 'password.confirm' => ['except' => 'destroy']]
If you need to customize these settings:
php artisan impersonator:publish --config
Usage
- Add trait
GeneaLabs\LaravelImpersonator\Traits\Impersonatableto your user model. - Override trait method
public function getCanImpersonateAttribute() : boolthat determines if a given user can impersonate other users. - (optional) Override trait method
public function getCanBeImpersonatedAttribute() : boolthat determines if a given user can be impersonated. - Use
route('impersonatees.index')to view a list of all impersonatable users. You could add something like the following to your menu:
@if ((auth()->user()->canImpersonate ?? false) && ! session('impersonator')) <a class="dropdown-item" href="{{ route('impersonatees.index') }}">Impersonator</a> @endif
- (optional) Add something like the following to your menu view to allow imporsonator to stop impersonating:
@if (session('impersonator')) <a href="{{ url('/logout') }}" class="dropdown-item" onclick="event.preventDefault(); document.getElementById('end-personation-session-form').submit();" > End Impersonation Session </a> <form action="{{ route('impersonatees.destroy', auth()->user()) }}" method="POST" style="display: none;" id="end-personation-session-form" > {{ csrf_field () }} {{ method_field ('DELETE') }} </form> @else <a href="{!! route('logout') !!}" class="dropdown-item" onclick="event.preventDefault(); document.getElementById('logout-form').submit();"> Logout </a> <form method="POST" action="{{ route('logout') }}" accept-charset="UTF-8" id="logout-form" style="display:none;" > {{ csrf_field () }} </form> @endif
Customization
php artisan impersonator:publish --views
Credits
In large part prodded and inspired by LaraCasts' tutorial: https://laracasts.com/series/how-do-i/episodes/17. Thank you @JeffreyWay!
统计信息
- 总下载量: 223.85k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 62
- 点击次数: 1
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2017-05-09