I found myself looking on the internet for someone who has already answered it, but I can’t find any. I was cleaning up some code with a strict PSR12 standard, and I found this issue with namespace …
how to customize Auth::routes in laravel
I hope you are the best. I’m trying to create a multi-language feature in my Laravel app. but I don’t know how to insert Auth::routes in my web routes file to support my multi-language. this code …
Trying to upload multiple files with text box but, on submission, the form the name, date text has no value
This code allows me to save the file correctly and also saves the name to database, but the textbox (Name, date) value is empty despite it having an inputted value. Here are the PHP and HTML Files …
Search for multiple sequences within an array
I want to search within an array that I have. The elements to be searched in this array are out of order, their content will be checked only by matching their keys. I could not reach the correct …
Error converting Json string to array of objects PHP
I made a post in a form converting my javascript localstorage to a post request. From there I tried to decode my json string to make an object in PHP. How my php code looks before I echo it $…
How to get the next of double quotes values on dom element php [closed]
i want to scrap the pages but In that pages they provide values like that below, but i take element using elementby Tagname and i cant take doubt quotes values next of strong tag, can anyone please …
Error compiling template: Component template requires a root element, rather than just text in vue.js with laravel
I am Learner in Vuejs with laravel, i created a fresh project in laravel, with vue.js frontend. but after run command php artisan serve, when i run project on webbrowser. output is blank. i checked …
Ziparchive always includes parent directory
I am trying to zip all files and folder within a folder The structure looks like so: storage/app/3 – folder 1 -file 1 -file 2 – folder 2 -file 3 When I run the zip script I want the zip to …
Nearest array element by key in reverse order
I have custom code where I get nearest user from array by array key: $users = [ “4” => “John”, “7” => “Alex”, “13” => “Smith&…
How can send entire php array values on button click?
I want to send entire array information by the button click event, basically I store all information in the session send it on button, the problem is that just one value of array sent from session …