/my/coin/withdraw/send route for coinspot v2 is not working
`checkBalance() is returning response as expected but withdraw() is returning:
{
“status”: “error”,
“message”: “Unauthorised”
}
PHP laravel create new session
I am developing an API to manage active sessions in my Laravel application and would like to know if it is possible to create a session for a user.
Laravel API URL not found on this server
I am trying to make API project by Laravel
I created the database and configured the .env
file and installed the api
with php:artisan
But when I tried to test the URL with Postman it showed HTML code for page that said The requested URL was not found on this server.
i am trying to implement a newsfeed API in my laravel app. i am currently using laravel 11
i am getting the error message Unresolvable dependency resolving [Parameter #0 [ $app ]] in class IlluminateSupportServiceProvider on the route to the news index function. i ahave set up the API keys and the service providers but still getting the error above
I’m trying to create an API in laravel but I’m having problems
I’m trying to create an API in Laravel, is there an api.php file in the routes folder in Laravel? or does it have to be done manually? because when I created it the file didn’t appear
Api works on Local, but not on the server with Laravel
It gives me this error when I run it on the server and not locally. I thought it might be something about the API with HTTPS, but I’m not too sure
Eloquent ORM ::where does not work (Laravel)
$person = Entrant::findOrFail($request->person_id); $person_2nd_query = Entrant::where(‘id’, ‘=’, $request->person_id); if ($person) { error_log($person); } So above you see 2 queries – the first one works and logs all the info into the console as needed, but when I try to use the second query in the if statement, it returns 500 Internal Server Error. So what […]