SlideShare una empresa de Scribd logo
1 de 87
Descargar para leer sin conexión
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

Más contenido relacionado

La actualidad más candente

La actualidad más candente (20)

laravel.pptx
laravel.pptxlaravel.pptx
laravel.pptx
 
Laravel
LaravelLaravel
Laravel
 
Tomcat
TomcatTomcat
Tomcat
 
JavaScript - An Introduction
JavaScript - An IntroductionJavaScript - An Introduction
JavaScript - An Introduction
 
The New JavaScript: ES6
The New JavaScript: ES6The New JavaScript: ES6
The New JavaScript: ES6
 
Bootstrap 5 basic
Bootstrap 5 basicBootstrap 5 basic
Bootstrap 5 basic
 
Bootstrap 5 ppt
Bootstrap 5 pptBootstrap 5 ppt
Bootstrap 5 ppt
 
JavaScript Programming
JavaScript ProgrammingJavaScript Programming
JavaScript Programming
 
Angular 8
Angular 8 Angular 8
Angular 8
 
Front-End Frameworks: a quick overview
Front-End Frameworks: a quick overviewFront-End Frameworks: a quick overview
Front-End Frameworks: a quick overview
 
Introduction to CSS3
Introduction to CSS3Introduction to CSS3
Introduction to CSS3
 
Java Script ppt
Java Script pptJava Script ppt
Java Script ppt
 
Presentation about html5 css3
Presentation about html5 css3Presentation about html5 css3
Presentation about html5 css3
 
Developing Faster with Swagger
Developing Faster with SwaggerDeveloping Faster with Swagger
Developing Faster with Swagger
 
Express node js
Express node jsExpress node js
Express node js
 
Bootstrap ppt
Bootstrap pptBootstrap ppt
Bootstrap ppt
 
Presentation of bootstrap
Presentation of bootstrapPresentation of bootstrap
Presentation of bootstrap
 
Laravel 101
Laravel 101Laravel 101
Laravel 101
 
Why Laravel?
Why Laravel?Why Laravel?
Why Laravel?
 
Node.js Express
Node.js  ExpressNode.js  Express
Node.js Express
 

Similar a Web Development with Laravel 5

Lecture 2_ Intro to laravel.pptx
Lecture 2_ Intro to laravel.pptxLecture 2_ Intro to laravel.pptx
Lecture 2_ Intro to laravel.pptx
SaziaRahman
 
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
 

Similar a Web Development with Laravel 5 (20)

Laravel Tutorial PPT
Laravel Tutorial PPTLaravel Tutorial PPT
Laravel Tutorial PPT
 
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)
 
Lecture 2_ Intro to laravel.pptx
Lecture 2_ Intro to laravel.pptxLecture 2_ Intro to laravel.pptx
Lecture 2_ Intro to laravel.pptx
 
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
 
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 Web Development: A Comprehensive Guide
Laravel Web Development: A Comprehensive GuideLaravel Web Development: A Comprehensive Guide
Laravel Web Development: A Comprehensive Guide
 

Último

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
 
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
Earley Information Science
 
Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and Myths
Joaquim Jorge
 

Último (20)

[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf
 
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
 
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
 
🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘
 
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
 
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
 
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdfUnderstanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
 
Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)
 
08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
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
 
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
 
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...
 
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
 
Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and Myths
 
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
 
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
 
How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonets
 
Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024
 
Presentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreterPresentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreter
 

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