Answer the question
In order to leave comments, you need to log in
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);
}
}
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question