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
740
Agency Devs: Unsung Heroes with Unreasonable Deadlines
matula
0
130
Other Decks in Programming
See All in Programming
SpringBoot3.4の構造化ログ #kanjava
irof
2
910
Djangoアプリケーション 運用のリアル 〜問題発生から可視化、最適化への道〜 #pyconshizu
kashewnuts
1
210
ARA Ansible for the teams
kksat
0
120
技術を根付かせる / How to make technology take root
kubode
1
220
[Fin-JAWS 第38回 ~re:Invent 2024 金融re:Cap~]FaultInjectionServiceアップデート@pre:Invent2024
shintaro_fukatsu
0
400
Multi Step Form, Decentralized Autonomous Organization
pumpkiinbell
1
550
動作確認やテストで漏れがちな観点3選
starfish719
6
990
Compose でデザインと実装の差異を減らすための取り組み
oidy
1
290
Software Architecture
hschwentner
6
2.1k
昭和の職場からアジャイルの世界へ
kumagoro95
1
320
Writing documentation can be fun with plugin system
okuramasafumi
0
110
AHC041解説
terryu16
0
580
Featured
See All Featured
Raft: Consensus for Rubyists
vanstee
137
6.8k
The World Runs on Bad Software
bkeepers
PRO
67
11k
Practical Tips for Bootstrapping Information Extraction Pipelines
honnibal
PRO
11
930
Dealing with People You Can't Stand - Big Design 2015
cassininazir
365
25k
Evolution of real-time – Irina Nazarova, EuRuKo, 2024
irinanazarova
6
530
Testing 201, or: Great Expectations
jmmastey
41
7.2k
実際に使うSQLの書き方 徹底解説 / pgcon21j-tutorial
soudai
175
51k
Exploring the Power of Turbo Streams & Action Cable | RailsConf2023
kevinliebholz
29
4.6k
Faster Mobile Websites
deanohume
306
31k
jQuery: Nuts, Bolts and Bling
dougneiner
63
7.6k
The Myth of the Modular Monolith - Day 2 Keynote - Rails World 2024
eileencodes
20
2.4k
The Web Performance Landscape in 2024 [PerfNow 2024]
tammyeverts
4
400
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