Wednesday, February 8, 2017

Howto start Programming with Laravel

With the announcement Laravel 5.4 is released on 24.1.2017, a better PHP programming framework is now available. Here is how you can start programming with Laravel 5.

What is Laravel 5?

Its a PHP programming framework. Yes, you still need to know PHP programming. This framework allow quick creation of a CRUD application and connection to a database to store data. Lots of work have been done for you to complete standard task BUT it requires you to adhere certain styles and syntax. These you MUST learn in order to appreciate the power of Laravel framework and the learning curve is NOT steep.

From laravel.com get more information on what is Laravel, browse examples and then install Laravel framework. Once installed, open a command line terminal to create a new project framework.

Laravel have a tool called artisan to do all the wonderful stuff of the framework. Here is an example to display Laravel version.


Getting help

The installed framework comes with its own description of its command tools. To access this, open a command line interface and type;

 $ php artisan --help  

or to display for a specific command

 $ php artisan help serve  
 $ php artisan help migrate  

List to find further help can be found at Laravel and Getting Help.




No comments:

Blog Archive