Laravel is a free, open-source PHP web framework, created by Taylor Otwell in June 2011 and intended for the development of web applications following the model–view–controller architectural pattern and based on Symfony
This course covers basics to advanced,
- MVC
- CRUD
- Deployment
- Payment Integration
Table of Content
1.Laravel for Beginners – Content
The router allows you to register routes that respond to any HTTP verb:
The Controller serves as an intermediary between the Model, the View, and any other resources needed to process the HTTP request and generate a web page
The Model represents your data structures. Typically your model classes will contain functions that help you retrieve, insert, and update information in your database.
<!-- wp:paragraph --> <p><a href="https://laravel.com/docs/5.6/blade">Blade</a> is the simple, yet powerful templating engine provided with Laravel. Unlike other popular PHP templating engines, Blade does not restrict you from using plain PHP code in your views. In fact, all Blade views are compiled into plain PHP code and cached until they are modified, meaning Blade adds essentially zero overhead to your application. Blade view files use the <code>.blade.php</code> file extension and are typically stored in the <code>resources/views</code> directory.</p> <!-- /wp:paragraph -->
Laravel artisan's tinker is a repl (read-eval-print loop) used to interact with your application and the database . A repl (read-eval-print-loop) is an interactive language shell. It takes/reads in a single user input, evaluates it, and returns the result to the user. Examples shown below.
There are no reviews yet. Be the first one to write one.