PHP code example of visanduma / laravel-auth-switch

1. Go to this page and download the library: Download visanduma/laravel-auth-switch 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/ */

    

visanduma / laravel-auth-switch example snippets


return [

    // username column of user table
    'username_column' => 'email',

    // auth able user model
    'model' => \App\Models\User::class,


    // switch able user accounts according to your user table
    'accounts' => [
        [
            'name' => 'Affiliate',
            'username' => '[email protected]',
            'redirect_to' => 'affiliate/dashboard' // redirect to this url after login
        ],
        [
            'name' => 'Broker',
            'username' => '[email protected]',
            'redirect_to' => 'brokers/dashboard'
        ],
];

@
bash
php artisan vendor:publish --tag="auth-switch-config"