SlideShare una empresa de Scribd logo
1 de 22
By:
Mayank Panchal
We will learn today
• WHAT IS LARAVEL
• INSTALL LARAVEL 5 WITH COMPOSER
• FILES STRUCTURE
• WHAT IS ARTISAN AND HOW DOES IT SAVE US TIME
• ROUTING AND ROUTE TYPES
• WHAT IS MIDDLEWARE AND HOW TO USE IT
• WHAT IS BLADE ?
• DATABASE AND ELOQUENT ORM
• CRUD WITH VALIDATION AND DATABASE
CONNECTION (PRACTICAL TASK)
• BEST PRACTICES WHEN CODING IN LARAVEL
• Laravel is MVC PHP framework created by Taylor Otwell in
2011
• Free open-source license with many contributors worldwide
• One of the best frameworks together with Symfony,
CodeIgniter, Yii
• Has powerful features, saving us time
• Uses Symfony packages
What is
• Eloquent ORM (object-relational mapping) – implements Active-
Record
• Query builder – helps you to build secured SQL queries
• Restful controllers – provides a way for separating the different HTTP
requests (GET, POST, DELETE, etc.)
• Blade template engine – combines templates with a data model to
produce views
• Migrations – version control system for database, update your database
easier
• Database seeding – provides a way to populate database tables with test
data used for testing
• Pagination – easy to use advanced pagination functionalities
• Forms security – provides CSRF token middleware, protecting all the
forms
Features of
• Laravel uses Composer to manage its dependencies
• Composer is dependency management tool for PHP, like a library full of
books
• NOT like Yum or apt
• Per project tool (vendor folder), not per system
• Install by using the command:
composer create-project [PACKAGE] [DESTINATION PATH] [--FLAGS]
composer create-project laravel/laravel Laravel test
Let’s install
app/Http folder contains the Controllers, Middlewares and Kernel file
All the models should be located in app/Models folder
All the config files are located in app/config folder
The service providers that are bootstrapping functions in our
app are located in app/Providers folder
Folder Structure
Folder Structure
• Database folder contains the migrations and
seeds
• The public folder is the actual folder you are opening on
the web server.
All JS / CSS / Images / Uploads are located there.
• The resources folder contains all the translations, views
and assets (SASS, LESS, JS)
that are compiled into public folder
• The routes folder contains all the routes for the project
• All the logs / cache files are located in storage folder
• The vendor folder contains all the composer packages
(dependencies)
Artisan is command-line interface for Laravel
Commands that are saving time
Generating files with artisan is recommended
Run php artisan list in the console
Artisan!
• The best and easy routing system I’ve seen
• Routing per middleware / prefix or namespace
• Routing per request method (GET, POST,
DELETE, etc.)
• ALWAYS name your route !
• Be careful with the routing order !
Let’s see routing examples
Routing
• The middleware is mechanism for filtering the HTTP
requests
• Laravel includes several middleware's – Authentication,
CSRF Protection
• The auth middleware checks if the user visiting the page
is authenticated through session cookie
• The CSRF token protection middleware protects your
application from cross-site request forgery attacks by
adding token key for each generated form
Let’s create middleware
Middleware
• Blade is the powerful template engine provided by
Laravel
• All the code inside blade file is compiled to static html
file
• Supports plain PHP
• Saves time
• Better components mobility, extend and include partials
Let’s take a look at few examples
Blade
ELOQUENT & DATABASE
• THE ELOQUENT ORM (OBJECT-RELATIONAL MAPPING) PROVIDES SIMPLE ACTIVE RECORD
IMPLEMENTATION FOR WORKING WITH THE DATABASE
$article = new Article();
$article->title = ‘Article title’;
$article->description = ‘Description’;
$article->save();
INSERT INTO `article` (`title`, `description`) VALUES (‘Article title’, ‘Description’);
• EACH TABLE HAS ITS OWN “MODEL”. YOU CAN USE THE MODEL TO READ, INSERT, UPDATE OR
DELETE ROW FROM THE SPECIFIC TABLE
• LET’S CHECK ONE MODEL
Practical Task
Best practices in
• NEVER write queries or model logic inside
the controller! The controller job is to
communicate with the model and pass data to
the view.
Extend and include partials. For example share
the same form fields on 2 pages – add and edit
Views mobility
Always use the CSRF token protection that Laravel provides in forms you create, the hackers will not
be able to spam your forms and database
Forms security
Be careful with the database architecture, always use the proper length for specific column and never
forget the indexes for searchable columns
Database architecture
• Avoid the big query unless you really have
to do it. The big query is hard to debug
and understand.
• You can merge the small queries into one
to save the CPU time on server, but
sometimes the query becomes way too
big.
Big Query
Don’t forget to write comments for each
method or complicated logic.
The PHPDoc comments are helping the
IDE to autosuggest easier and the
developers to understand the piece of code
Don’t forget the PHPDoc
Thank you!
Questions

Más contenido relacionado

La actualidad más candente

Lecture 2_ Intro to laravel.pptx
Lecture 2_ Intro to laravel.pptxLecture 2_ Intro to laravel.pptx
Lecture 2_ Intro to laravel.pptx
SaziaRahman
 

La actualidad más candente (20)

Laravel development (Laravel History, Environment Setup & Laravel Installatio...
Laravel development (Laravel History, Environment Setup & Laravel Installatio...Laravel development (Laravel History, Environment Setup & Laravel Installatio...
Laravel development (Laravel History, Environment Setup & Laravel Installatio...
 
Laravel introduction
Laravel introductionLaravel introduction
Laravel introduction
 
Laravel tutorial
Laravel tutorialLaravel tutorial
Laravel tutorial
 
An Introduction To REST API
An Introduction To REST APIAn Introduction To REST API
An Introduction To REST API
 
Spring boot
Spring bootSpring boot
Spring boot
 
Maven Introduction
Maven IntroductionMaven Introduction
Maven Introduction
 
JSON: The Basics
JSON: The BasicsJSON: The Basics
JSON: The Basics
 
REST & RESTful Web Services
REST & RESTful Web ServicesREST & RESTful Web Services
REST & RESTful Web Services
 
Servlets
ServletsServlets
Servlets
 
Introduction to angular with a simple but complete project
Introduction to angular with a simple but complete projectIntroduction to angular with a simple but complete project
Introduction to angular with a simple but complete project
 
Spring boot introduction
Spring boot introductionSpring boot introduction
Spring boot introduction
 
Lecture 2_ Intro to laravel.pptx
Lecture 2_ Intro to laravel.pptxLecture 2_ Intro to laravel.pptx
Lecture 2_ Intro to laravel.pptx
 
Express js
Express jsExpress js
Express js
 
Java Servlets
Java ServletsJava Servlets
Java Servlets
 
Why Laravel?
Why Laravel?Why Laravel?
Why Laravel?
 
jQuery for beginners
jQuery for beginnersjQuery for beginners
jQuery for beginners
 
Introduction to spring boot
Introduction to spring bootIntroduction to spring boot
Introduction to spring boot
 
php
phpphp
php
 
Spring MVC Framework
Spring MVC FrameworkSpring MVC Framework
Spring MVC Framework
 
Nodejs presentation
Nodejs presentationNodejs presentation
Nodejs presentation
 

Similar a Laravel ppt

Solr Recipes Workshop
Solr Recipes WorkshopSolr Recipes Workshop
Solr Recipes Workshop
Erik Hatcher
 

Similar a Laravel ppt (20)

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
LaravelLaravel
Laravel
 
Solr Recipes
Solr RecipesSolr Recipes
Solr Recipes
 
Web Development with Laravel 5
Web Development with Laravel 5Web Development with Laravel 5
Web Development with Laravel 5
 
Laravel 4 presentation
Laravel 4 presentationLaravel 4 presentation
Laravel 4 presentation
 
Lecture11_LaravelGetStarted_SPring2023.pdf
Lecture11_LaravelGetStarted_SPring2023.pdfLecture11_LaravelGetStarted_SPring2023.pdf
Lecture11_LaravelGetStarted_SPring2023.pdf
 
Solr Recipes Workshop
Solr Recipes WorkshopSolr Recipes Workshop
Solr Recipes Workshop
 
Codeigniter
CodeigniterCodeigniter
Codeigniter
 
Ruby On Rails
Ruby On RailsRuby On Rails
Ruby On Rails
 
Salesforce Development Best Practices
Salesforce Development Best PracticesSalesforce Development Best Practices
Salesforce Development Best Practices
 
Frameworks Galore: A Pragmatic Review
Frameworks Galore: A Pragmatic ReviewFrameworks Galore: A Pragmatic Review
Frameworks Galore: A Pragmatic Review
 
44CON 2014 - Pentesting NoSQL DB's Using NoSQL Exploitation Framework, Franci...
44CON 2014 - Pentesting NoSQL DB's Using NoSQL Exploitation Framework, Franci...44CON 2014 - Pentesting NoSQL DB's Using NoSQL Exploitation Framework, Franci...
44CON 2014 - Pentesting NoSQL DB's Using NoSQL Exploitation Framework, Franci...
 
Lecture #5 Introduction to rails
Lecture #5 Introduction to railsLecture #5 Introduction to rails
Lecture #5 Introduction to rails
 
Introduction to Rails by Evgeniy Hinyuk
Introduction to Rails by Evgeniy HinyukIntroduction to Rails by Evgeniy Hinyuk
Introduction to Rails by Evgeniy Hinyuk
 
Directory Structure Changes in Laravel 5.3
Directory Structure Changes in Laravel 5.3Directory Structure Changes in Laravel 5.3
Directory Structure Changes in Laravel 5.3
 
Introduction to Laravel
Introduction to LaravelIntroduction to Laravel
Introduction to Laravel
 
SilverStripe From a Developer's Perspective
SilverStripe From a Developer's PerspectiveSilverStripe From a Developer's Perspective
SilverStripe From a Developer's Perspective
 
MySQL Day Paris 2016 - MySQL as a Document Store
MySQL Day Paris 2016 - MySQL as a Document StoreMySQL Day Paris 2016 - MySQL as a Document Store
MySQL Day Paris 2016 - MySQL as a Document Store
 
Deep Dive: Alfresco Core Repository (... embedded in a micro-services style a...
Deep Dive: Alfresco Core Repository (... embedded in a micro-services style a...Deep Dive: Alfresco Core Repository (... embedded in a micro-services style a...
Deep Dive: Alfresco Core Repository (... embedded in a micro-services style a...
 
Salesforce Basic Development
Salesforce Basic DevelopmentSalesforce Basic Development
Salesforce Basic Development
 

Último

Último (20)

Vector Search -An Introduction in Oracle Database 23ai.pptx
Vector Search -An Introduction in Oracle Database 23ai.pptxVector Search -An Introduction in Oracle Database 23ai.pptx
Vector Search -An Introduction in Oracle Database 23ai.pptx
 
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
 
Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...
 
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
 
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
 
"I see eyes in my soup": How Delivery Hero implemented the safety system for ...
"I see eyes in my soup": How Delivery Hero implemented the safety system for ..."I see eyes in my soup": How Delivery Hero implemented the safety system for ...
"I see eyes in my soup": How Delivery Hero implemented the safety system for ...
 
Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...
Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...
Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...
 
Artificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : UncertaintyArtificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : Uncertainty
 
Elevate Developer Efficiency & build GenAI Application with Amazon Q​
Elevate Developer Efficiency & build GenAI Application with Amazon Q​Elevate Developer Efficiency & build GenAI Application with Amazon Q​
Elevate Developer Efficiency & build GenAI Application with Amazon Q​
 
MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024
 
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost SavingRepurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
 
Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...
Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...
Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...
 
WSO2's API Vision: Unifying Control, Empowering Developers
WSO2's API Vision: Unifying Control, Empowering DevelopersWSO2's API Vision: Unifying Control, Empowering Developers
WSO2's API Vision: Unifying Control, Empowering Developers
 
MS Copilot expands with MS Graph connectors
MS Copilot expands with MS Graph connectorsMS Copilot expands with MS Graph connectors
MS Copilot expands with MS Graph connectors
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdf
 
DBX First Quarter 2024 Investor Presentation
DBX First Quarter 2024 Investor PresentationDBX First Quarter 2024 Investor Presentation
DBX First Quarter 2024 Investor Presentation
 
Mcleodganj Call Girls 🥰 8617370543 Service Offer VIP Hot Model
Mcleodganj Call Girls 🥰 8617370543 Service Offer VIP Hot ModelMcleodganj Call Girls 🥰 8617370543 Service Offer VIP Hot Model
Mcleodganj Call Girls 🥰 8617370543 Service Offer VIP Hot Model
 
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWEREMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
 
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
 
Exploring Multimodal Embeddings with Milvus
Exploring Multimodal Embeddings with MilvusExploring Multimodal Embeddings with Milvus
Exploring Multimodal Embeddings with Milvus
 

Laravel ppt

  • 2. We will learn today • WHAT IS LARAVEL • INSTALL LARAVEL 5 WITH COMPOSER • FILES STRUCTURE • WHAT IS ARTISAN AND HOW DOES IT SAVE US TIME • ROUTING AND ROUTE TYPES • WHAT IS MIDDLEWARE AND HOW TO USE IT • WHAT IS BLADE ? • DATABASE AND ELOQUENT ORM • CRUD WITH VALIDATION AND DATABASE CONNECTION (PRACTICAL TASK) • BEST PRACTICES WHEN CODING IN LARAVEL
  • 3. • Laravel is MVC PHP framework created by Taylor Otwell in 2011 • Free open-source license with many contributors worldwide • One of the best frameworks together with Symfony, CodeIgniter, Yii • Has powerful features, saving us time • Uses Symfony packages What is
  • 4.
  • 5. • Eloquent ORM (object-relational mapping) – implements Active- Record • Query builder – helps you to build secured SQL queries • Restful controllers – provides a way for separating the different HTTP requests (GET, POST, DELETE, etc.) • Blade template engine – combines templates with a data model to produce views • Migrations – version control system for database, update your database easier • Database seeding – provides a way to populate database tables with test data used for testing • Pagination – easy to use advanced pagination functionalities • Forms security – provides CSRF token middleware, protecting all the forms Features of
  • 6. • Laravel uses Composer to manage its dependencies • Composer is dependency management tool for PHP, like a library full of books • NOT like Yum or apt • Per project tool (vendor folder), not per system • Install by using the command: composer create-project [PACKAGE] [DESTINATION PATH] [--FLAGS] composer create-project laravel/laravel Laravel test Let’s install
  • 7. app/Http folder contains the Controllers, Middlewares and Kernel file All the models should be located in app/Models folder All the config files are located in app/config folder The service providers that are bootstrapping functions in our app are located in app/Providers folder Folder Structure
  • 8. Folder Structure • Database folder contains the migrations and seeds • The public folder is the actual folder you are opening on the web server. All JS / CSS / Images / Uploads are located there. • The resources folder contains all the translations, views and assets (SASS, LESS, JS) that are compiled into public folder • The routes folder contains all the routes for the project • All the logs / cache files are located in storage folder • The vendor folder contains all the composer packages (dependencies)
  • 9. Artisan is command-line interface for Laravel Commands that are saving time Generating files with artisan is recommended Run php artisan list in the console Artisan!
  • 10. • The best and easy routing system I’ve seen • Routing per middleware / prefix or namespace • Routing per request method (GET, POST, DELETE, etc.) • ALWAYS name your route ! • Be careful with the routing order ! Let’s see routing examples Routing
  • 11. • The middleware is mechanism for filtering the HTTP requests • Laravel includes several middleware's – Authentication, CSRF Protection • The auth middleware checks if the user visiting the page is authenticated through session cookie • The CSRF token protection middleware protects your application from cross-site request forgery attacks by adding token key for each generated form Let’s create middleware Middleware
  • 12. • Blade is the powerful template engine provided by Laravel • All the code inside blade file is compiled to static html file • Supports plain PHP • Saves time • Better components mobility, extend and include partials Let’s take a look at few examples Blade
  • 13. ELOQUENT & DATABASE • THE ELOQUENT ORM (OBJECT-RELATIONAL MAPPING) PROVIDES SIMPLE ACTIVE RECORD IMPLEMENTATION FOR WORKING WITH THE DATABASE $article = new Article(); $article->title = ‘Article title’; $article->description = ‘Description’; $article->save(); INSERT INTO `article` (`title`, `description`) VALUES (‘Article title’, ‘Description’);
  • 14. • EACH TABLE HAS ITS OWN “MODEL”. YOU CAN USE THE MODEL TO READ, INSERT, UPDATE OR DELETE ROW FROM THE SPECIFIC TABLE • LET’S CHECK ONE MODEL
  • 16. Best practices in • NEVER write queries or model logic inside the controller! The controller job is to communicate with the model and pass data to the view.
  • 17. Extend and include partials. For example share the same form fields on 2 pages – add and edit Views mobility
  • 18. Always use the CSRF token protection that Laravel provides in forms you create, the hackers will not be able to spam your forms and database Forms security
  • 19. Be careful with the database architecture, always use the proper length for specific column and never forget the indexes for searchable columns Database architecture
  • 20. • Avoid the big query unless you really have to do it. The big query is hard to debug and understand. • You can merge the small queries into one to save the CPU time on server, but sometimes the query becomes way too big. Big Query
  • 21. Don’t forget to write comments for each method or complicated logic. The PHPDoc comments are helping the IDE to autosuggest easier and the developers to understand the piece of code Don’t forget the PHPDoc