Answers for "laravel guard example"

PHP
4

laravel auth

//namespace
use Illuminate\Support\Facades\Auth;
Posted by: Guest on May-17-2020
0

laravel guard

They arere the definition of how the system should store and retrieve 
]information about your users.

You can find the configuration in your config/auth.php

https://stackoverflow.com/questions/34896130/laravel-what-is-a-guard
https://mattstauffer.com/blog/multiple-authentication-guard-drivers-including-api-in-laravel-5-2/
Posted by: Guest on January-23-2021
0

where is the guard setting in laravel

You have to also register the guard in the config\auth.php

'guards' => [
    'web' => [
        'driver' => 'session',
        'provider' => 'users',
    ],

    'api' => [
        'driver' => 'token',
        'provider' => 'users',
    ],

     'admin' => [
        'driver' => 'session',
        'provider' => 'admins',
    ],
],
Posted by: Guest on April-13-2021

Browse Popular Code Answers by Language