PHP code example of scif / laravel-pretend
1. Go to this page and download the library: Download scif/laravel-pretend library . Choose the download type require .
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
scif / laravel-pretend example snippets
'providers' => [
…
Scif\LaravelPretend\LaravelPretendServiceProvider::class,
/*
* Application Service Providers...
*/
…
]
protected $middlewareGroups = [
'web' => [
…
Scif\LaravelPretend\Middleware\Impersonate::class,
],
class User extends Authenticatable implements Impersonable
{
…
public function canImpersonate(): bool
{
return $this->isAdmin();
}
}
php ./artisan vendor:publish --provider=Scif\\LaravelPretend\\LaravelPretendServiceProvider --tag=config
return [
'impersonate' => [
'user_identifier' => 'email',
'auth_check' => 'impersonate',
]
];
// generates link with impersonation
{{ route('home', ['_switch_user' => '[email protected] ']) }}
// exit impersonation
@if ($app['impersonator']->isImpersonated())
<a href="{{ route('home', ['_switch_user' => '_exit']) }}">Exit impersonation</a>
@else
<a href="{{ route('logout') }}">Logout</a>
@endif
use Scif\LaravelPretend\Event\Impersontated;
…
Event::listen(Impersonated::class, function (Impersonated $event) {
//
});