ºÝºÝߣ

ºÝºÝߣShare a Scribd company logo
Introduction to Laravel
                                Bill Condo   //   2013-01-09



Wednesday, January 9, 13
Lineage

                             February 2006 by EllisLab




                            April 2011 by Taylor Otwell




Wednesday, January 9, 13
Comparison

                    ? CodeIgniter: +More Mature, +Legacy
                           PHP Support, -No ORM, -Legacy Support
                    ? Kohana: +ACL, +Benchmarking,
                           -Sparse Docs
                    ? FuelPHP: +Fast, +ACL, +ORM,
                           -Incomplete Docs, -Small Community



Wednesday, January 9, 13
Overview

                    ? MVC Framework with Bundles,
                           Migrations, and Artisan CLI


                    ? Eloquent ORM, Restful Controllers,
                           Class Auto Loading, and Powerful
                           Routing



Wednesday, January 9, 13
Project Structure

                                      ? application
                                      ? bundles
                                      ? laravel
                                      ? public
                                      ? storage

Wednesday, January 9, 13
Example Controller

                           Basic Controller




Wednesday, January 9, 13
... And Another

                           REST Controller




Wednesday, January 9, 13
Example Model

                           Basic Eloquent Model




                           all(), ?nd(), where(), count(), save(), delete(), and more auto included.




Wednesday, January 9, 13
Example View

                           Calling From Controller




                           Passing in Data




Wednesday, January 9, 13
Example View Cont.

                           Accessing Data




                           *Also,View Templating is available with Blade.




Wednesday, January 9, 13
Learning
                ? Lot¡¯s of videos. Bundled up at...
                  bitly.com/bundles/mavrck/1

                ? Tutorial Series by Dayle Rees at...
                  daylerees.com/category/laravel-tutorials

                ? Forums...
                  forums.laravel.io

                ? IRC... irc.freenode.net
                  #laravel


Wednesday, January 9, 13
Questions?

                ? billcondo@gmail.com
                ? @mavrck
                ? billcondo.com / mavrck.com


Wednesday, January 9, 13

More Related Content

Intro to Laravel PHP Framework

  • 1. Introduction to Laravel Bill Condo // 2013-01-09 Wednesday, January 9, 13
  • 2. Lineage February 2006 by EllisLab April 2011 by Taylor Otwell Wednesday, January 9, 13
  • 3. Comparison ? CodeIgniter: +More Mature, +Legacy PHP Support, -No ORM, -Legacy Support ? Kohana: +ACL, +Benchmarking, -Sparse Docs ? FuelPHP: +Fast, +ACL, +ORM, -Incomplete Docs, -Small Community Wednesday, January 9, 13
  • 4. Overview ? MVC Framework with Bundles, Migrations, and Artisan CLI ? Eloquent ORM, Restful Controllers, Class Auto Loading, and Powerful Routing Wednesday, January 9, 13
  • 5. Project Structure ? application ? bundles ? laravel ? public ? storage Wednesday, January 9, 13
  • 6. Example Controller Basic Controller Wednesday, January 9, 13
  • 7. ... And Another REST Controller Wednesday, January 9, 13
  • 8. Example Model Basic Eloquent Model all(), ?nd(), where(), count(), save(), delete(), and more auto included. Wednesday, January 9, 13
  • 9. Example View Calling From Controller Passing in Data Wednesday, January 9, 13
  • 10. Example View Cont. Accessing Data *Also,View Templating is available with Blade. Wednesday, January 9, 13
  • 11. Learning ? Lot¡¯s of videos. Bundled up at... bitly.com/bundles/mavrck/1 ? Tutorial Series by Dayle Rees at... daylerees.com/category/laravel-tutorials ? Forums... forums.laravel.io ? IRC... irc.freenode.net #laravel Wednesday, January 9, 13
  • 12. Questions? ? billcondo@gmail.com ? @mavrck ? billcondo.com / mavrck.com Wednesday, January 9, 13