Laravel is a PHP framework. Laravel is following the design of MVC.
Popular PHP frameworks in 2019
MVC
M-Model
V-View
C-Controller
model is going to class theirs. Views are going to be methods. The model deals with classes that is a class. E.g user databases, post databases
the view deals with the HTML that is going to represent something.
we talk about the framework we're talking about data classes. Remember this is OOP (Object Oriented Programming)
The controller is actually our classes as well. Controller deals with view and model. (Middle man)
how to install the laravel
---------------------------------
1. download and install the PHP Storm IDE or any other IDE.
2. install the composer http://www.getcomposer.org/ that is dependency manager for PHP. Basically, it is a PHP program to download certain things that work right out of the box. Composer, you can download packages plugins or framework's library whatever you want to call it pieces of code that are already created for us to use right out of the box.
Not only that but he would download say it's dependencies. Whatever that application needs form the internet. So if that package needs to work with some other library would download that for you.
You don't have to go manually do it.
downloading package web site: http://packagist.org/
3. download and install Git
website: http://git-scm.com/
4. You need to know, Laravel version update information.
No comments:
Post a Comment