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
Sponsored
·
Ship Features Fearlessly
Turn features on and off without deploys. Used by thousands of Ruby developers.
→
Terry Matula
June 13, 2013
Programming
200
2
Share
Embed
Copy iframe code
Copy JS code
Copy link
Start on current slide
Intro to Laravel (Austin PHP Meetup, 6/13/2013)
Intro to Laravel (Austin PHP Meetup, 6/13/2013)
Terry Matula
June 13, 2013
More Decks by Terry Matula
See All by Terry Matula
Testing your APIs with Postman
matula
0
890
Agency Devs: Unsung Heroes with Unreasonable Deadlines
matula
0
240
Other Decks in Programming
See All in Programming
php-fpmのプロセスが枯渇した日-調査・対処・そして本当にやるべきだったこと-
shibuchaaaan
0
280
改善しないと、タスクが回らない。 “てんこ盛りポジション” を引き継いだ情シスの、入社3ヶ月の業務改善録
krm963
0
260
そこに3びきプロダクトがいるじゃろう——生成AI時代における“価値が届かない理由”の構造
kosuket
0
470
全PRの83%がAIレビューだけでマージできるようになった開発組織はその後どうなったか
athug
1
1.6k
Google Apps Script で Ruby を動かす
kawahara
0
220
Building a Meta Ray-Ban display app
akkeylab
0
140
Cloudflare is Agents
chimame
0
160
運用ダッシュボードの設計を誰も教えてくれないのだけどみなさんどうしてるんですか? - チームに監視するという文化を根付かせるための第一歩を踏みたい -
satoshi256kbyte
1
110
言葉の格闘技のススメ~紙とペンと言葉から始める、キャリアの描き方~
progresscicada
2
140
Built Our Own Background Agent at LayerX
layerx
PRO
10
5.4k
わからない話を追いかけたら、プログラミング言語を作る側にいた
ydah
3
500
Augmenting AI with the Power of Jakarta EE
ivargrimstad
0
570
Featured
See All Featured
How to make the Groovebox
asonas
2
2.3k
4 Signs Your Business is Dying
shpigford
187
22k
The Director’s Chair: Orchestrating AI for Truly Effective Learning
tmiket
1
270
Building Experiences: Design Systems, User Experience, and Full Site Editing
marktimemedia
0
570
It's Worth the Effort
3n
188
29k
Future Trends and Review - Lecture 12 - Web Technologies (1019888BNR)
signer
PRO
0
3.7k
Applied NLP in the Age of Generative AI
inesmontani
PRO
4
2.4k
Understanding Cognitive Biases in Performance Measurement
bluesmoon
32
3k
From π to Pie charts
rasagy
0
270
Color Theory Basics | Prateek | Gurzu
gurzu
0
410
Context Engineering - Making Every Token Count
addyosmani
9
1k
The MySQL Ecosystem @ GitHub 2015
samlambert
251
13k
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