What is the flow structure of Laravel?
Thread Tags
Adobe Illustrator Adobe InDesign Adobe Photoshop Android Development Android Programming Android Studio Automation Testing C / C++ Programming Career Options College Lounge css digital marketing Digital Marketing / SEO Fireworks Graphic Design Graphic designing Graphics Design Graphics Designing HTML? Illustrator Internship Training logo Design logo designing Magento Photoshop PHP Programming QA react-native Scroll Website SEO Single Page Website Stock Managment System Testing Typography UI UI/UX Development UI Design UI Designing UI development User Interface UX Design Web Designing Website Design Wordpress wpRegister for free!
Registration at Smart Mentors is completely free and takes only a few seconds. By registering you’ll gain:
- Full Posting Privileges.
- Access to Private Messaging.
- Optional Email Notification.
- Ability to Fully Participate.
Register Now, or check out the Site Tour and find out everything Smart Mentors has to offer.
Tagged: PHP Programming
This thread contains 1 reply, has 2 voices, and was last updated by darshan.soni007 1 year, 11 months ago.
- Author Replies
- February 13, 2019 at 5:01 pm #53635
Hello Sonal,
There are 4 major components of laravel that defines a structure for laravel.
1. Routes
2. Model
3. View
4. ControllerNow, whenever you request from view, the initial step that laravel always follows is to check the similar route call and method (e.g. Get, Post, Put etc.).
Then route has a controller define inside with the method that will refer to one of the controllers.
Then controller might need to call module for processing some data from the database( or maybe not).
After processing, the controller receives the processed data from the module.
And finally, the controller returns the response to a respective view.
Hope this helps! 🙂
- AuthorPosts
You must be logged in to reply to this thread.Please login or register. Registration is 100% free.