skip to Main Content

How to get the type of the user in laravel? – Phpmyadmin

I want the code to check if the current user category is admin or superadmin, it will show the edit panel @if (Auth::user()->category=='admin'||Auth::user()->category=='superadmin') <td class="center"> <a href="{{ route('Order.edit', ['id'=>$order->id ]) }}" class="btn btn-warning btn-sm custom"> <i class="glyphicon glyphicon-edit"></i> EDIT</a> </td>…

VIEW QUESTION

Ebay API – Ebay oauth "Input request parameters are invalid." getting user consent

https://auth.sandbox.ebay.com/oauth2/authorize? client_id=${clientID} &redirect_uri=https://localhost:3000/ebay/callback &response_type=code &scope=https%3A%2F%2Fapi.ebay.com%2Foauth%2Fscope%2Fsell%40user I keep receiving this error: {"error_id":"invalid_request","error_description":"Input request parameters are invalid.","http_status_code":400} I am following instructions from this site here Please can anyone explain why I am getting this error?

VIEW QUESTION
Back To Top
Search