SlideShare une entreprise Scribd logo
1  sur  87
Télécharger pour lire hors ligne
Laravel 5
The PHP Framework ForWebArtisans
What is Laravel?
 PHP Framework for Web Artisans
 Built on top of Symfony2 Components
 Like any framework, provides services and libraries to make
interacting with web requests and other services
Most Popular PHP Framework
on Github
Stars
0
4000
16000
Laravel Symfony CodeIgniter Zend Slim
486950715313
5584
9517
12000
9854
8000
15329
CakePHP
CodeIgniter
Yii2
CakePHP Yii2Laravel
Zend
Symfony
Slim
March, 23 2015 https://github.com/search?l=php&o=desc&q=stars%3A%3E1&s=stars&type=Repositories
• Initial Release
• Languange
• Architecture
• License
: June 2011 (latest: 5.0.16 March 14, 2015)
: PHP (5.4+)
: MVC
: MIT
http://en.wikipedia.org/wiki/Laravel
Details
Where to start from?
Laravel is very flexible framework. There are at least 3
options how to create new project:
- via laravel installer
- via composer
- clone from github
Via Laravel installer
This will download laravel installer via composer
- composer global require "laravel/installer=~1.1"
When installer added this simple command will create app
- laravel new <app name>
* Do not forget to add ~/.composer/vendor/bin to your PATH variable in ~/.bashrc
Other options
Via composer
- composer create-project laravel/laravel your-project-name
Get from GitHub
- https://github.com/laravel/laravel
- And then in the project dir run “composer install” to get all needed
packages
Laravel and Composer
Using composer in Laravel you can
- Add/remove/update packages
- Dump autoload file and generate new one
- Update laravel version
Overall
Architecture
http://tech.knolskape.com/10-‐quick-‐tips-‐to-‐get-‐better-‐at-‐laravel/
What’s New?
In laravel 5
What’s New?
• New Folder Structure
• Contracts (interface)
• Route Middleware
• Controller Method Injection
• Laravel Scheduler
• Tinker / Psysh
• DotEnv (.env)
• Form Requests
• Symfony VarDumper
middleware
tinker
method injection
dd($foo) var_dump($foo)
Print_r($foo)
Laravel directory structure
The app directory, as you might expect, contains the core code of your application.
The config directory, as the name implies, contains all of your application's configuration files.
The database folder contains your database migration and seeds.
The public directory contains the front controller and your assets (images, JavaScript, CSS, etc.).
The app/storage directory contains compiled Blade templates, file based sessions, file caches, and
other files generated by the framework.
The tests directory contains your automated tests.
The vendor directory contains your Composer dependencies.
The app/model directory contains your model
The app/http/controllers directory contains your model
...
Magic Artisan
- Is located in Laravel project root directory
- Basically is a php script which performs all actions in
Laravel for example:
- Manage migrations
- Check application routes
- tinker
- Create Artisan commands
- Run database seeds
Full list is available with “php artisan list”
Artisan CLI
Artisan commands
Artisan commands usually are some scripts launched from
command line or with cron. For example you need to have
daily export of your orders - write a command and run it
with cron.
- They accept options and
arguments
- Have pretty output if
needed
- Interactive (can ask
password/question)
Laravel Environmental Configuration
 After installing Laravel and setting up project, the first thing we need to do
is Generating Application key ( php artisan key:generate )
 Laravel provides facility to run your application in different environment like
testing, production,etc.
 You can configure the environment of your application in the .env file of the
root directory of your application.
 If you have installed Laravel using composer, this file will automatically be
created.otherwise, you can simply rename the .env.example file to .env file
Environmental Configuration (Continue)
 This is a sample .env
file
 you can both keep
configuration/environ
ment variables in .env
or in a config/ file
 Next we’ll see how to
keep config in config/
file
Laravel Config
Laravel uses config files with arrays in it to
store different configurations. database.php ->
Location: /config
To get config value simply follow dot notation
Config::get(‘<filename>.key1.key2.key3’);
Can also pass default value on not found
Config::get(‘key’, 123);
Laravel actively uses php namespaces to keep classnames
short and possibility to use same class names for different
components.
For example all Admin functionality under Admin
namespace.
Laravel and namespaces
So Laravel is MVC framework meaning
we have folder for controllers, views and
models by default, no need to create
them.
Guess there’s no need to explain MVC
pattern.
Laravel MVC
Features
In Laravel
Features
• Artisan CLI
• Routing
• Middleware
• Resourceful Controllers
• Eloquent ORM (Object-‐Relational Mapping)
• Blade Templating
• Migrations and Database Seeding
http://www.webdesignermag.co.uk/laravel-‐a-‐modern-‐php-‐framework/
Features
• Artisan CLI
• Routing
• Middleware
• Resourceful Controllers
• Eloquent ORM (Object-‐Relational Mapping)
• Blade Templating
• Migrations and Database Seeding
http://www.webdesignermag.co.uk/laravel-‐a-‐modern-‐php-‐framework/
Features
• Artisan CLI
• Routing
• Middleware
• Resourceful Controllers
• Eloquent ORM (Object-‐Relational Mapping)
• Blade Templating
• Migrations and Database Seeding
http://www.webdesignermag.co.uk/laravel-‐a-‐modern-‐php-‐framework/
Features
• Artisan CLI
• Routing
• Middleware
• Resourceful Controllers
• Eloquent ORM (Object-‐Relational Mapping)
• Blade Templating
• Migrations and Database Seeding
http://www.webdesignermag.co.uk/laravel-‐a-‐modern-‐php-‐framework/
 There’s one main Controller class which
all controllers should extend.
 By default Laravel has BaseController
(extends from Controller) and
HomeController (extends from
BaseController)
Laravel controllers
Laravel controllers
More advanced
example.
Responds only to get
method and returns
rendered view
Responds to post
method, and returns
redirect to next logical
action
Type-hint any dependency
in controller constructors
Type-hint any dependency in
Controller methods
Features
• Artisan CLI
• Routing
• Middleware
• Resourceful Controllers
• Eloquent ORM (Object-‐Relational Mapping)
• Blade Templating
• Migrations and Database Seeding
http://www.webdesignermag.co.uk/laravel-‐a-‐modern-‐php-‐framework/
Blade
Laravel migrations
 Interaction with migrations is
happening through artisan commands.
 Each migration has two functions up and down
to migrate and rollback
Features
• Artisan CLI
• Routing
• Middleware
• Resourceful Controllers
• Migrations and Database Seeding
• Eloquent ORM (Object-‐Relational Mapping)
• Blade Templating
http://www.webdesignermag.co.uk/laravel-‐a-‐modern-‐php-‐framework/
Laravel migrations
 This is how
basic migration
looks like
DB seeds
 Seeds are used to insert predefined data in
tables so there is something to start from for
example on development environment we can
create test users, test products and so on.
Features
• Artisan CLI
• Routing
• Middleware
• Resourceful Controllers
• Eloquent ORM (Object-‐Relational Mapping)
• Blade Templating
• Migrations and Database Seeding
http://www.webdesignermag.co.uk/laravel-‐a-‐modern-‐php-‐framework/
Models (Eloquents)
 Models are located
under app/ directory.
 Simple Product
model.
 Will use ‘products’ table
Laravel ORM
Why is it good?
- Has a lot of useful methods
- Is very flexible
- Has built in safe delete functionality
- Has built in Relationship functionality
- Has option to define scopes
Laravel ORM
- Models can have relations defined in
them for easier access to properties.
- $product->category in this case will
return Category model object where
this product belongs. How?
Laravel assumes you have category_id
in your products table, so when you call
$product->category query SELECT *
FROM ‘categories’ where id = ‘?’ is
performed. Of course you can define
different relation fields
Laravel ORM
Cool methods:
// Retrieve the user by the attributes, or create it if it doesn't exist...
$user = User::firstOrCreate(array('name' => 'John'));
// Retrieve the user by the attributes, or instantiate a new instance...
$user = User::firstOrNew(array('name' => 'John'));
Basically Laravels ORM has function for anything
Eloquent ORM
Q:A

Contenu connexe

Tendances

Lecture 2_ Intro to laravel.pptx
Lecture 2_ Intro to laravel.pptxLecture 2_ Intro to laravel.pptx
Lecture 2_ Intro to laravel.pptx
SaziaRahman
 
Web application development with laravel php framework version 4
Web application development with laravel php framework version 4Web application development with laravel php framework version 4
Web application development with laravel php framework version 4
Untung D Saptoto
 

Tendances (20)

laravel.pptx
laravel.pptxlaravel.pptx
laravel.pptx
 
Laravel
LaravelLaravel
Laravel
 
What-is-Laravel-23-August-2017.pptx
What-is-Laravel-23-August-2017.pptxWhat-is-Laravel-23-August-2017.pptx
What-is-Laravel-23-August-2017.pptx
 
Laravel presentation
Laravel presentationLaravel presentation
Laravel presentation
 
Laravel
LaravelLaravel
Laravel
 
Laravel - The PHP Framework for Web Artisans
Laravel - The PHP Framework for Web ArtisansLaravel - The PHP Framework for Web Artisans
Laravel - The PHP Framework for Web Artisans
 
Projects In Laravel : Learn Laravel Building 10 Projects
Projects In Laravel : Learn Laravel Building 10 ProjectsProjects In Laravel : Learn Laravel Building 10 Projects
Projects In Laravel : Learn Laravel Building 10 Projects
 
Laravel Eloquent ORM
Laravel Eloquent ORMLaravel Eloquent ORM
Laravel Eloquent ORM
 
Lecture 2_ Intro to laravel.pptx
Lecture 2_ Intro to laravel.pptxLecture 2_ Intro to laravel.pptx
Lecture 2_ Intro to laravel.pptx
 
Php.ppt
Php.pptPhp.ppt
Php.ppt
 
Flask – Python
Flask – PythonFlask – Python
Flask – Python
 
Web application development with laravel php framework version 4
Web application development with laravel php framework version 4Web application development with laravel php framework version 4
Web application development with laravel php framework version 4
 
Php Tutorials for Beginners
Php Tutorials for BeginnersPhp Tutorials for Beginners
Php Tutorials for Beginners
 
3. Java Script
3. Java Script3. Java Script
3. Java Script
 
Python/Flask Presentation
Python/Flask PresentationPython/Flask Presentation
Python/Flask Presentation
 
Introduction Node.js
Introduction Node.jsIntroduction Node.js
Introduction Node.js
 
TypeScript for Java Developers
TypeScript for Java DevelopersTypeScript for Java Developers
TypeScript for Java Developers
 
Php introduction
Php introductionPhp introduction
Php introduction
 
Introduction of Html/css/js
Introduction of Html/css/jsIntroduction of Html/css/js
Introduction of Html/css/js
 
Drupal
DrupalDrupal
Drupal
 

Similaire à Web Development with Laravel 5

Laravel Starter Kit | Laravel Admin Template-ChandraAdmin
Laravel Starter Kit | Laravel Admin Template-ChandraAdmin Laravel Starter Kit | Laravel Admin Template-ChandraAdmin
Laravel Starter Kit | Laravel Admin Template-ChandraAdmin
Lorvent56
 
Object Oriented Programming with Laravel - Session 2
Object Oriented Programming with Laravel - Session 2Object Oriented Programming with Laravel - Session 2
Object Oriented Programming with Laravel - Session 2
Shahrzad Peyman
 

Similaire à Web Development with Laravel 5 (20)

Laravel (8) php_framework_handbook__start_from_zer_18604872_(z-lib.org)
Laravel (8) php_framework_handbook__start_from_zer_18604872_(z-lib.org)Laravel (8) php_framework_handbook__start_from_zer_18604872_(z-lib.org)
Laravel (8) php_framework_handbook__start_from_zer_18604872_(z-lib.org)
 
Getting started with laravel
Getting started with laravelGetting started with laravel
Getting started with laravel
 
Introduction to Laravel Framework (5.2)
Introduction to Laravel Framework (5.2)Introduction to Laravel Framework (5.2)
Introduction to Laravel Framework (5.2)
 
Laravel Starter Kit | Laravel Admin Template-ChandraAdmin
Laravel Starter Kit | Laravel Admin Template-ChandraAdmin Laravel Starter Kit | Laravel Admin Template-ChandraAdmin
Laravel Starter Kit | Laravel Admin Template-ChandraAdmin
 
Laravel 4 presentation
Laravel 4 presentationLaravel 4 presentation
Laravel 4 presentation
 
Laravel : A Fastest Growing Kid
Laravel : A Fastest Growing KidLaravel : A Fastest Growing Kid
Laravel : A Fastest Growing Kid
 
Lecture11_LaravelGetStarted_SPring2023.pdf
Lecture11_LaravelGetStarted_SPring2023.pdfLecture11_LaravelGetStarted_SPring2023.pdf
Lecture11_LaravelGetStarted_SPring2023.pdf
 
Adventures in Laravel 5 SunshinePHP 2016 Tutorial
Adventures in Laravel 5 SunshinePHP 2016 TutorialAdventures in Laravel 5 SunshinePHP 2016 Tutorial
Adventures in Laravel 5 SunshinePHP 2016 Tutorial
 
Laravel & Composer presentation - extended
Laravel & Composer presentation - extendedLaravel & Composer presentation - extended
Laravel & Composer presentation - extended
 
MidwestPHP 2016 - Adventures in Laravel 5
MidwestPHP 2016 - Adventures in Laravel 5 MidwestPHP 2016 - Adventures in Laravel 5
MidwestPHP 2016 - Adventures in Laravel 5
 
Web presentation
Web presentationWeb presentation
Web presentation
 
Laravel - A Trending PHP Framework
Laravel - A Trending PHP FrameworkLaravel - A Trending PHP Framework
Laravel - A Trending PHP Framework
 
laravel-interview-questions.pdf
laravel-interview-questions.pdflaravel-interview-questions.pdf
laravel-interview-questions.pdf
 
Introduction to Laravel
Introduction to LaravelIntroduction to Laravel
Introduction to Laravel
 
Laravel Presentation
Laravel PresentationLaravel Presentation
Laravel Presentation
 
Frequently Asked Questions About Laravel
Frequently Asked Questions About LaravelFrequently Asked Questions About Laravel
Frequently Asked Questions About Laravel
 
Laravel Web Development: A Comprehensive Guide
Laravel Web Development: A Comprehensive GuideLaravel Web Development: A Comprehensive Guide
Laravel Web Development: A Comprehensive Guide
 
Latest Laravel Practice 2023 Experts Guidance.pdf
Latest Laravel Practice 2023 Experts Guidance.pdfLatest Laravel Practice 2023 Experts Guidance.pdf
Latest Laravel Practice 2023 Experts Guidance.pdf
 
Laravel Meetup
Laravel MeetupLaravel Meetup
Laravel Meetup
 
Object Oriented Programming with Laravel - Session 2
Object Oriented Programming with Laravel - Session 2Object Oriented Programming with Laravel - Session 2
Object Oriented Programming with Laravel - Session 2
 

Dernier

Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slide
vu2urc
 

Dernier (20)

Automating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps ScriptAutomating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps Script
 
presentation ICT roal in 21st century education
presentation ICT roal in 21st century educationpresentation ICT roal in 21st century education
presentation ICT roal in 21st century education
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day Presentation
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slide
 
GenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdfGenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdf
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt Robison
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024
 
Tech Trends Report 2024 Future Today Institute.pdf
Tech Trends Report 2024 Future Today Institute.pdfTech Trends Report 2024 Future Today Institute.pdf
Tech Trends Report 2024 Future Today Institute.pdf
 
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
 
Strategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherStrategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a Fresher
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
 
Real Time Object Detection Using Open CV
Real Time Object Detection Using Open CVReal Time Object Detection Using Open CV
Real Time Object Detection Using Open CV
 
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, AdobeApidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)
 
Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
 
HTML Injection Attacks: Impact and Mitigation Strategies
HTML Injection Attacks: Impact and Mitigation StrategiesHTML Injection Attacks: Impact and Mitigation Strategies
HTML Injection Attacks: Impact and Mitigation Strategies
 
AWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of Terraform
 

Web Development with Laravel 5

  • 1. Laravel 5 The PHP Framework ForWebArtisans
  • 2. What is Laravel?  PHP Framework for Web Artisans  Built on top of Symfony2 Components  Like any framework, provides services and libraries to make interacting with web requests and other services
  • 3. Most Popular PHP Framework on Github
  • 4. Stars 0 4000 16000 Laravel Symfony CodeIgniter Zend Slim 486950715313 5584 9517 12000 9854 8000 15329 CakePHP CodeIgniter Yii2 CakePHP Yii2Laravel Zend Symfony Slim March, 23 2015 https://github.com/search?l=php&o=desc&q=stars%3A%3E1&s=stars&type=Repositories
  • 5. • Initial Release • Languange • Architecture • License : June 2011 (latest: 5.0.16 March 14, 2015) : PHP (5.4+) : MVC : MIT http://en.wikipedia.org/wiki/Laravel Details
  • 6. Where to start from? Laravel is very flexible framework. There are at least 3 options how to create new project: - via laravel installer - via composer - clone from github
  • 7. Via Laravel installer This will download laravel installer via composer - composer global require "laravel/installer=~1.1" When installer added this simple command will create app - laravel new <app name> * Do not forget to add ~/.composer/vendor/bin to your PATH variable in ~/.bashrc
  • 8. Other options Via composer - composer create-project laravel/laravel your-project-name Get from GitHub - https://github.com/laravel/laravel - And then in the project dir run “composer install” to get all needed packages
  • 9. Laravel and Composer Using composer in Laravel you can - Add/remove/update packages - Dump autoload file and generate new one - Update laravel version
  • 13. What’s New? • New Folder Structure • Contracts (interface) • Route Middleware • Controller Method Injection • Laravel Scheduler • Tinker / Psysh • DotEnv (.env) • Form Requests • Symfony VarDumper
  • 16. Laravel directory structure The app directory, as you might expect, contains the core code of your application. The config directory, as the name implies, contains all of your application's configuration files. The database folder contains your database migration and seeds. The public directory contains the front controller and your assets (images, JavaScript, CSS, etc.). The app/storage directory contains compiled Blade templates, file based sessions, file caches, and other files generated by the framework. The tests directory contains your automated tests. The vendor directory contains your Composer dependencies. The app/model directory contains your model The app/http/controllers directory contains your model ...
  • 17. Magic Artisan - Is located in Laravel project root directory - Basically is a php script which performs all actions in Laravel for example: - Manage migrations - Check application routes - tinker - Create Artisan commands - Run database seeds Full list is available with “php artisan list”
  • 19. Artisan commands Artisan commands usually are some scripts launched from command line or with cron. For example you need to have daily export of your orders - write a command and run it with cron. - They accept options and arguments - Have pretty output if needed - Interactive (can ask password/question)
  • 20. Laravel Environmental Configuration  After installing Laravel and setting up project, the first thing we need to do is Generating Application key ( php artisan key:generate )  Laravel provides facility to run your application in different environment like testing, production,etc.  You can configure the environment of your application in the .env file of the root directory of your application.  If you have installed Laravel using composer, this file will automatically be created.otherwise, you can simply rename the .env.example file to .env file
  • 21. Environmental Configuration (Continue)  This is a sample .env file  you can both keep configuration/environ ment variables in .env or in a config/ file  Next we’ll see how to keep config in config/ file
  • 22. Laravel Config Laravel uses config files with arrays in it to store different configurations. database.php -> Location: /config To get config value simply follow dot notation Config::get(‘<filename>.key1.key2.key3’); Can also pass default value on not found Config::get(‘key’, 123);
  • 23. Laravel actively uses php namespaces to keep classnames short and possibility to use same class names for different components. For example all Admin functionality under Admin namespace. Laravel and namespaces
  • 24. So Laravel is MVC framework meaning we have folder for controllers, views and models by default, no need to create them. Guess there’s no need to explain MVC pattern. Laravel MVC
  • 26. Features • Artisan CLI • Routing • Middleware • Resourceful Controllers • Eloquent ORM (Object-‐Relational Mapping) • Blade Templating • Migrations and Database Seeding http://www.webdesignermag.co.uk/laravel-‐a-‐modern-‐php-‐framework/
  • 27. Features • Artisan CLI • Routing • Middleware • Resourceful Controllers • Eloquent ORM (Object-‐Relational Mapping) • Blade Templating • Migrations and Database Seeding http://www.webdesignermag.co.uk/laravel-‐a-‐modern-‐php-‐framework/
  • 28.
  • 29.
  • 30.
  • 31.
  • 32.
  • 33.
  • 34.
  • 35.
  • 36.
  • 37.
  • 38.
  • 39.
  • 40.
  • 41.
  • 42.
  • 43.
  • 44.
  • 45.
  • 46.
  • 47.
  • 48.
  • 49.
  • 50.
  • 51.
  • 52.
  • 53.
  • 54.
  • 55.
  • 56. Features • Artisan CLI • Routing • Middleware • Resourceful Controllers • Eloquent ORM (Object-‐Relational Mapping) • Blade Templating • Migrations and Database Seeding http://www.webdesignermag.co.uk/laravel-‐a-‐modern-‐php-‐framework/
  • 57.
  • 58.
  • 59.
  • 60. Features • Artisan CLI • Routing • Middleware • Resourceful Controllers • Eloquent ORM (Object-‐Relational Mapping) • Blade Templating • Migrations and Database Seeding http://www.webdesignermag.co.uk/laravel-‐a-‐modern-‐php-‐framework/
  • 61.  There’s one main Controller class which all controllers should extend.  By default Laravel has BaseController (extends from Controller) and HomeController (extends from BaseController) Laravel controllers
  • 62.
  • 63. Laravel controllers More advanced example. Responds only to get method and returns rendered view Responds to post method, and returns redirect to next logical action
  • 64.
  • 65.
  • 66.
  • 67. Type-hint any dependency in controller constructors Type-hint any dependency in Controller methods
  • 68. Features • Artisan CLI • Routing • Middleware • Resourceful Controllers • Eloquent ORM (Object-‐Relational Mapping) • Blade Templating • Migrations and Database Seeding http://www.webdesignermag.co.uk/laravel-‐a-‐modern-‐php-‐framework/
  • 69. Blade
  • 70.
  • 71.
  • 72.
  • 73.
  • 74.
  • 75.
  • 76.
  • 77. Laravel migrations  Interaction with migrations is happening through artisan commands.  Each migration has two functions up and down to migrate and rollback
  • 78. Features • Artisan CLI • Routing • Middleware • Resourceful Controllers • Migrations and Database Seeding • Eloquent ORM (Object-‐Relational Mapping) • Blade Templating http://www.webdesignermag.co.uk/laravel-‐a-‐modern-‐php-‐framework/
  • 79. Laravel migrations  This is how basic migration looks like
  • 80. DB seeds  Seeds are used to insert predefined data in tables so there is something to start from for example on development environment we can create test users, test products and so on.
  • 81. Features • Artisan CLI • Routing • Middleware • Resourceful Controllers • Eloquent ORM (Object-‐Relational Mapping) • Blade Templating • Migrations and Database Seeding http://www.webdesignermag.co.uk/laravel-‐a-‐modern-‐php-‐framework/
  • 82. Models (Eloquents)  Models are located under app/ directory.  Simple Product model.  Will use ‘products’ table
  • 83. Laravel ORM Why is it good? - Has a lot of useful methods - Is very flexible - Has built in safe delete functionality - Has built in Relationship functionality - Has option to define scopes
  • 84. Laravel ORM - Models can have relations defined in them for easier access to properties. - $product->category in this case will return Category model object where this product belongs. How? Laravel assumes you have category_id in your products table, so when you call $product->category query SELECT * FROM ‘categories’ where id = ‘?’ is performed. Of course you can define different relation fields
  • 85. Laravel ORM Cool methods: // Retrieve the user by the attributes, or create it if it doesn't exist... $user = User::firstOrCreate(array('name' => 'John')); // Retrieve the user by the attributes, or instantiate a new instance... $user = User::firstOrNew(array('name' => 'John')); Basically Laravels ORM has function for anything
  • 87. Q:A