Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
Intro to Laravel (Austin PHP Meetup, 6/13/2013)
Search
Terry Matula
June 13, 2013
Programming
2
170
Intro to Laravel (Austin PHP Meetup, 6/13/2013)
Intro to Laravel (Austin PHP Meetup, 6/13/2013)
Terry Matula
June 13, 2013
Tweet
Share
More Decks by Terry Matula
See All by Terry Matula
Testing your APIs with Postman
matula
0
710
Agency Devs: Unsung Heroes with Unreasonable Deadlines
matula
0
120
Other Decks in Programming
See All in Programming
Kaigi on Rails 2024 〜運営の裏側〜
krpk1900
1
250
Jakarta EE meets AI
ivargrimstad
0
630
Hotwire or React? ~アフタートーク・本編に含めなかった話~ / Hotwire or React? after talk
harunatsujita
1
120
CSC509 Lecture 11
javiergs
PRO
0
180
CSC509 Lecture 13
javiergs
PRO
0
110
Nurturing OpenJDK distribution: Eclipse Temurin Success History and plan
ivargrimstad
0
1k
A Journey of Contribution and Collaboration in Open Source
ivargrimstad
0
1k
NSOutlineView何もわからん:( 前編 / I Don't Understand About NSOutlineView :( Pt. 1
usagimaru
0
340
카카오페이는 어떻게 수천만 결제를 처리할까? 우아한 결제 분산락 노하우
kakao
PRO
0
110
.NET のための通信フレームワーク MagicOnion 入門 / Introduction to MagicOnion
mayuki
1
1.8k
よくできたテンプレート言語として TypeScript + JSX を利用する試み / Using TypeScript + JSX outside of Web Frontend #TSKaigiKansai
izumin5210
6
1.8k
Contemporary Test Cases
maaretp
0
140
Featured
See All Featured
Fireside Chat
paigeccino
34
3k
How STYLIGHT went responsive
nonsquared
95
5.2k
Thoughts on Productivity
jonyablonski
67
4.3k
KATA
mclloyd
29
14k
YesSQL, Process and Tooling at Scale
rocio
169
14k
The Power of CSS Pseudo Elements
geoffreycrofte
73
5.3k
Cheating the UX When There Is Nothing More to Optimize - PixelPioneers
stephaniewalter
280
13k
Into the Great Unknown - MozCon
thekraken
32
1.5k
Fantastic passwords and where to find them - at NoRuKo
philnash
50
2.9k
Learning to Love Humans: Emotional Interface Design
aarron
273
40k
The Art of Delivering Value - GDevCon NA Keynote
reverentgeek
8
900
Agile that works and the tools we love
rasmusluckow
327
21k
Transcript
LARAVEL! Terry Matula @terrymatula June 13, 2013 Austin PHP Meetup
The obligatory "All About Me" slides
The obligatory "All About Me" slides 1999: HTML 4.01 perl/cgi-bin
php3
1999: HTML 4.01 perl/cgi-bin php3 : Flash/ActionScript C#.NET The obligatory
"All About Me" slides
1999: HTML 4.01 perl/cgi-bin php3 : Flash/ActionScript C#.NET : Drupal
Wordpress CodeIgniter The obligatory "All About Me" slides
Founded in 1995, White Lion is an Austin - based
Interactive Agency specializing in custom, complex web + mobile design and development.
Available: Eventually
laravel A F P F nother #&%ing antastic HP ramework
laravel Adroit * Adventure * Agavi * Agile Toolkit *
Akelos * Ash.MVC * ATK * Atomik * BlueShoes * CakePHP * CodeIgniter * CoughPHP * Dave * DIY * Epiphany * evoCore * Fat-free * FuelPHP * Flourish * Flow3 * FUSE MVC * Fusebox * Horde * InterJinn * Jelix * KISSMVC * Kohana * Kolibri * Konstrukt * Laravel * LightVC * Limb3 * Lion * Madeam * Maintainable * Nette * OpenBiz * Orinoco * P4A * PHP on TRAX * PHPDevShell * PHOCOA * PHPBurn * PhpPeanuts * PHPulse * Pluf * Prado * Qcodo * QCubed * QPHP * Recess * Sapphire * Seagull * Silex * Slim * SOLAR * Spaghetti * Stato * Stubbles * Swat * Symfony * Tangra * Tigermouse * TinyMVC * Vork * WASP * Xajax * Xataface * Yii * Zend * Zephyr * Zeta * ZOOP
laravel
laravel
laravel
laravel $ curl -sS https://getcomposer.org/installer | php Install Composer (http://getcomposer.org
) Install Laravel $ php composer.phar create-project laravel/laravel myProject $ chmod -R 777 myProject/app/storage
laravel
laravel https://github.com/JeffreyWay/Laravel-4-Generators Laravel 4 Generators Update Laravel's composer.json file "require":
{ "laravel/framework": "4.0.*", "way/generators": "dev-master" } Run composer update $ php composer.phar update Add the service provider to app/config/app.php 'Way\Generators\GeneratorsServiceProvider'
laravel Laravel 4 Generators
laravel Artisan • Command Line Interface for Laravel • Customizable
• Uses Symfony’s Console component 13 Symfony components • HTTP Requests / Responses • Routing • Console • Filesystem • More…
laravel Laravel 4 Generators $ php artisan generate:scaffold superheroes --
fields="name:string, powers:text, age:integer"
laravel • Route (Facade) • Migrations • Seeder • Eloquent
ORM • Resource controller • Tests
LARAVEL! Terry Matula @terrymatula June 13, 2013 Austin PHP Meetup