Transcript
Page 1: Intro to Laravel PHP Framework

Introduction to LaravelBill Condo // 2013-01-09

Wednesday, January 9, 13

Page 2: Intro to Laravel PHP Framework

Lineage

April 2011 by Taylor Otwell

February 2006 by EllisLab

Wednesday, January 9, 13

Page 3: Intro to Laravel PHP Framework

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

Page 4: Intro to Laravel PHP Framework

Overview

• MVC Framework with Bundles, Migrations, and Artisan CLI

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

Wednesday, January 9, 13

Page 5: Intro to Laravel PHP Framework

Project Structure

• application

• bundles

• laravel

• public

• storage

Wednesday, January 9, 13

Page 6: Intro to Laravel PHP Framework

Example Controller

Basic Controller

Wednesday, January 9, 13

Page 7: Intro to Laravel PHP Framework

... And Another

REST Controller

Wednesday, January 9, 13

Page 8: Intro to Laravel PHP Framework

Example Model

Basic Eloquent Model

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

Wednesday, January 9, 13

Page 9: Intro to Laravel PHP Framework

Example View

Calling From Controller

Passing in Data

Wednesday, January 9, 13

Page 10: Intro to Laravel PHP Framework

Example View Cont.

Accessing Data

*Also, View Templating is available with Blade.

Wednesday, January 9, 13

Page 11: Intro to Laravel PHP Framework

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...#laravel irc.freenode.net

Wednesday, January 9, 13

Page 12: Intro to Laravel PHP Framework

Questions?

[email protected]

• @mavrck

• billcondo.com / mavrck.com

Wednesday, January 9, 13


Top Related