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
·
Your Podcast. Everywhere. Effortlessly.
Share. Educate. Inspire. Entertain. You do you. We'll handle the rest.
→
Terry Matula
June 13, 2013
Programming
2
200
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
860
Agency Devs: Unsung Heroes with Unreasonable Deadlines
matula
0
230
Other Decks in Programming
See All in Programming
Ruby x Terminal
a_matsuda
7
580
Rails Girls Tokyo 18th GMO Pepabo Sponsor Talk
yutokyokutyo
0
200
The Past, Present, and Future of Enterprise Java
ivargrimstad
0
380
朝日新聞のデジタル版を支えるGoバックエンド ー価値ある情報をいち早く確実にお届けするために
junkiishida
1
370
PostgreSQL を使った快適な go test 環境を求めて
otakakot
0
410
JPUG勉強会 OSSデータベースの内部構造を理解しよう
oga5
2
230
What Spring Developers Should Know About Jakarta EE
ivargrimstad
0
210
CSC307 Lecture 14
javiergs
PRO
0
450
社内規程RAGの精度を73.3% → 100%に改善した話
oharu121
13
7.6k
New in Go 1.26 Implementing go fix in product development
sunecosuri
0
330
API Platformを活用したPHPによる本格的なWeb API開発 / api-platform-book-intro
ttskch
1
120
2026年は Rust 置き換えが流行る! / 20260220-niigata-5min-tech
girigiribauer
0
220
Featured
See All Featured
Imperfection Machines: The Place of Print at Facebook
scottboms
269
14k
Google's AI Overviews - The New Search
badams
0
930
Have SEOs Ruined the Internet? - User Awareness of SEO in 2025
akashhashmi
0
280
Being A Developer After 40
akosma
91
590k
The Power of CSS Pseudo Elements
geoffreycrofte
82
6.2k
A brief & incomplete history of UX Design for the World Wide Web: 1989–2019
jct
1
310
Digital Projects Gone Horribly Wrong (And the UX Pros Who Still Save the Day) - Dean Schuster
uxyall
0
600
Unlocking the hidden potential of vector embeddings in international SEO
frankvandijk
0
190
Utilizing Notion as your number one productivity tool
mfonobong
4
240
AI: The stuff that nobody shows you
jnunemaker
PRO
3
350
Dealing with People You Can't Stand - Big Design 2015
cassininazir
367
27k
SEO in 2025: How to Prepare for the Future of Search
ipullrank
3
3.3k
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