ask a question about Laravel parsing, or Nginx parsing path. first of all, let s talk about the source of the problem. Since we are recently working on a laravel-based directory indexing program, one of the requirements is to show the file at the end o...
< H1 > error message < H1 > laravel composer installation component Times error php. composer.phar install error message - Installing laravel framework (v5.1.46) Loading from cache - Installing guzzlehttp guzzle (6.3.2) Downloading...
good evening, big gods. I have this need: the PHP server acts as a middleman to communicate between the mobile app end and the hardware device (roughly like this, some words may be unprofessional). In some cases, the app side and the hardware side take t...
$validator = Validator::make($request->all(), [ id => required|integer title => required|unique:posts|max:255 , body => required , ]); The requirement is like ...
I just learned the laravel framework and found that the order of routes will affect the content played. Why? normal code: Route::get( posts ,function (){ return index ; }); Route::get( posts create ,function (){ return create ; }); ...