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
760
Agency Devs: Unsung Heroes with Unreasonable Deadlines
matula
0
130
Other Decks in Programming
See All in Programming
コードを読んで理解するko build
bells17
1
120
GoとPHPのインターフェイスの違い
shimabox
2
220
[JAWS DAYS 2025] 最近の DB の競合解決の仕組みが分かった気になってみた
maroon1st
0
190
【AI 自走型】Figma からデザインコーディングを行うプロンプト
tetsuro_b
0
100
CDKを使ったPagerDuty連携インフラのテンプレート化
shibuya_shogo
0
130
kintone開発を効率化するためにチームで試した施策とその結果を大放出!
oguemon
0
380
SwiftUI移行のためのインプレッショントラッキング基盤の構築
kokihirokawa
0
190
Djangoにおける複数ユーザー種別認証の設計アプローチ@DjangoCongress JP 2025
delhi09
PRO
4
520
⚪⚪の⚪⚪をSwiftUIで再現す る
u503
0
140
PHPカンファレンス名古屋2025 タスク分解の試行錯誤〜レビュー負荷を下げるために〜
soichi
1
770
Better Code Design in PHP
afilina
0
190
Webフレームワークとともに利用するWeb components / JSConf.jp おかわり
spring_raining
1
150
Featured
See All Featured
Dealing with People You Can't Stand - Big Design 2015
cassininazir
366
25k
Art, The Web, and Tiny UX
lynnandtonic
298
20k
The Straight Up "How To Draw Better" Workshop
denniskardys
232
140k
[RailsConf 2023 Opening Keynote] The Magic of Rails
eileencodes
28
9.3k
How STYLIGHT went responsive
nonsquared
99
5.4k
ReactJS: Keep Simple. Everything can be a component!
pedronauck
666
120k
Why Our Code Smells
bkeepers
PRO
336
57k
Into the Great Unknown - MozCon
thekraken
35
1.7k
StorybookのUI Testing Handbookを読んだ
zakiyama
28
5.5k
Building Applications with DynamoDB
mza
93
6.3k
Making Projects Easy
brettharned
116
6k
Navigating Team Friction
lara
183
15k
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