Skip to content

Can’t understand a logic of Object And Array in php

If I write this line on routes/web.php file It outputs this: That’s cool, but my question is since app()[‘config’] returns an object so how this [“auth.guards.web”]works? Even there is no index with that name! Outside of Laravel I tried to write a class named Test so that it retu…

Ajax multiple file names in one string response

I want to return the file names to use in my html modal. But instead returning each file name, it returns all of them at once. Check the following image: My modal code is: My script to open modal and fetch the files is: And finally my file to fetch the file names from the server is: I want to

Remove the .php extension on all pages (NGINX)

Having tried all the solutions on Stack, I was not able to remove the .php extension. I managed to make the URLs accessible: www.mydomain.com/login but the user can always change the URL to www.mydomain.com/login.php and I’d like to avoid that. Here is a part of my config : Answer This might be what you…

Route groups and form posting in laravel

I am using CoreUI and Laravel to build a project and I want to make a form on clients/addclient which will pass all the data from form to my database. I am struggling into this part: I have these …

ORA-28547 with php-fpm in docker container

I got a working php-fpm docker container acting as the php backend to a nginx frontend. What I mean by working, is that it renders phpinfo output in the browser as expected. My php-fpm container was …