Category: Laravel
-

Laravel Basic of Route and View
Consider any URL send request form the browser and go to server and that server use Laravel as a backend and perform the following steps: Route File looks at the request: Request first of all goes to route file and it looks the request and decide what to do next Get or process any data…
-

Steps to Install laravel
To Install Laravel follow following points: Use command: Composer global require Laravel/installer Then change the directory to htdocs from cd.. command After that cerate project using following command Laravel new project_name It takes some time when it’s done then open the project to any editor like visual studio then Use terminal and check the…
-

What is Laravel?
Laravel is a PHP framework for creating Websites that work well with MySQL database and follows MVC – Model view and controller. Model represent data stored in database View represent the HTML template that send to the browser. Controller is the middle between model and view. the main work of controller is to get the…