L
L
lemonlimelike2018-07-18 22:05:15
JavaScript
lemonlimelike, 2018-07-18 22:05:15

How to get a variable from the server and write it to a global variable?

Hello.
There is such a method in laravel:

public function ifAdmin()
    {
        if(Auth::check()){
            $auth = Auth::user()->email;
            $role = Role::where([
                ['email',$auth],
                ['role_name','admin']
            ])->get();

            return response()->json($role);
        }
    }

How to get it and write it to the window object?

Answer the question

In order to leave comments, you need to log in

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question