SlideShare a Scribd company logo
Introduction to Laravel
framework
“Love beautiful code? We do too.”
About Speaker
Ahmad Fatoni
[fatoni@dot-indonesia.com]
Web Developer at DOT Indonesia
(PT Distinction On Technology Indonesia)
Laravel
(2011
)
V5.5
(2017
)
Taylor Otwell
Laravel Horizon | Laravel Dusk | Laravel Echo | Valet | Lumen | and more….
Today Topic
� Architecture
� Routing
� Controller
� Model
� Views
� Migration
� Query Builder
� Eloquent
� Composer support
Architecture
Architecture
Routing
� Default route files : routes/web.php and routes/api.php
� Available method : GET, POST, PUT, PATCH, DELETE, OPTIONS
� CSRF protection
� Using parameter(s) : Route::get('users/{id}', ['uses' => 'UserController@show]);
� Named route : Route::get('users/{id}', ['uses' =>UserController@show])->name(‘show’);
� Grouping
Controller
� Default folder : app/Http/Controllers
� Connecting model and view (see the architecture)
� ‘Request’ handler : IlluminateHttpRequest
○ all()
○ only()
○ except()
○ json()
○ And more (https://laravel.com/api/5.5/Illuminate/Http/Request.html)
Controller
Controller
� Return view response : return view('auth.login');
� Compacting data to view
$data['member'] = [ 'fatoni', 'kennan' ];
return view('member.index', compact('data'));
� Redirect to route : return redirect()->route('member.index');
Model
� Default folder : app
� Connecting app with database
� Awesome Eloquent
Model
Views
� Default folder : resources/views
� Blade templating (https://laravel.com/docs/5.5/blade)
Views
� Easy to organizing
Views
� Easy to organizing
Migrations
� Default folder : database/migrations
� Build database from application
� Easily modify and share database schema
� Creating foreign key (relationship)
Migrations
CreateRolesTable CreatePermissionRoleTable
Migrations
Query Builder
Get Data
� Query Builder :
○ $users = DB::table('users')->get();
� SQL Query
○ $sql = "SELECT * FROM users”;
Insert Data
� Query Builder :
○ $result = DB::table('users')->insert([‘colum1’ => ‘values1’, ‘column2’ => ‘values2’]);
○ $result = DB::table(users’)->insert($request->all());
� SQL Query
○ INSERT INTO users (column1, column2.) VALUES (value1, value2)
Query Builder
Update Data
� Query Builder :
○ $result = DB::table('users')->where(‘id’, ‘=’, 1)->update([‘colum1’ => ‘values1’,
‘column2’ => ‘values2’]);
○ $result = DB::table(users’)->where(‘id’, ‘=’, 1)->insert($request->all());
� SQL Query
○ UPDATE users SET column1=value, column2=value2 WHERE id=1
Eloquent
� Awesome collections ( all(), create(), update(), etc )
� Accessors & Mutators
� Easy managing and working with relationships
� Serializations
Eloquent
� Awesome collections ( all(), create(), update(), etc )
Eloquent
� Accessors & Mutators
Accessor
Mutator
Eloquent
� Easy managing and working with relationships
○ One To One
○ One To Many
○ Many To Many
○ Has Many Through
○ Polymorphic Relations
○ Many To Many Polymorphic Relations
Eloquent
� Easy managing and working with relationships
○ One To One
Call it :
$phone = User::find(1)->phone;
Eloquent
� Serializations
○ Serializing To Arrays
○ Serializing To JSON
Composer support
Introduction to laravel framework

More Related Content

PPTX
Laravel Tutorial PPT
Piyush Aggarwal
 
PDF
Laravel tutorial
Broker IG
 
PPTX
Laravel overview
Obinna Akunne
 
PPTX
Laravel ppt
Mayank Panchal
 
PDF
Laravel Introduction
Ahmad Shah Hafizan Hamidin
 
PPTX
Laravel introduction
Simon Funk
 
PDF
Laravel presentation
Toufiq Mahmud
 
PDF
Web Development with Laravel 5
Soheil Khodayari
 
Laravel Tutorial PPT
Piyush Aggarwal
 
Laravel tutorial
Broker IG
 
Laravel overview
Obinna Akunne
 
Laravel ppt
Mayank Panchal
 
Laravel Introduction
Ahmad Shah Hafizan Hamidin
 
Laravel introduction
Simon Funk
 
Laravel presentation
Toufiq Mahmud
 
Web Development with Laravel 5
Soheil Khodayari
 

What's hot (20)

PPTX
Laravel development (Laravel History, Environment Setup & Laravel Installatio...
Dilouar Hossain
 
PPTX
Laravel Eloquent ORM
Ba Thanh Huynh
 
PPTX
laravel.pptx
asif290119
 
PPTX
Laravel
tanveerkhan62
 
PPTX
Lecture 2_ Intro to laravel.pptx
SaziaRahman
 
PPTX
Spring Boot and REST API
07.pallav
 
PDF
Laravel - The PHP Framework for Web Artisans
Windzoon Technologies
 
PDF
Why Laravel?
Jonathan Goode
 
PPT
Spring Framework
nomykk
 
PPTX
Understanding REST APIs in 5 Simple Steps
Tessa Mero
 
PPSX
Spring - Part 1 - IoC, Di and Beans
Hitesh-Java
 
PPTX
Introduction to Laravel Framework (5.2)
Viral Solani
 
PPTX
What-is-Laravel-23-August-2017.pptx
AbhijeetKumar456867
 
PPTX
NodeJS - Server Side JS
Ganesh Kondal
 
PDF
Java Collections | Collections Framework in Java | Java Tutorial For Beginner...
Edureka!
 
PPSX
Rest api standards and best practices
Ankita Mahajan
 
PPT
Introduction to the Web API
Brad Genereaux
 
PPTX
Spring boot
Pradeep Shanmugam
 
PDF
REST API and CRUD
Prem Sanil
 
PPTX
Spring data jpa
Jeevesh Pandey
 
Laravel development (Laravel History, Environment Setup & Laravel Installatio...
Dilouar Hossain
 
Laravel Eloquent ORM
Ba Thanh Huynh
 
laravel.pptx
asif290119
 
Laravel
tanveerkhan62
 
Lecture 2_ Intro to laravel.pptx
SaziaRahman
 
Spring Boot and REST API
07.pallav
 
Laravel - The PHP Framework for Web Artisans
Windzoon Technologies
 
Why Laravel?
Jonathan Goode
 
Spring Framework
nomykk
 
Understanding REST APIs in 5 Simple Steps
Tessa Mero
 
Spring - Part 1 - IoC, Di and Beans
Hitesh-Java
 
Introduction to Laravel Framework (5.2)
Viral Solani
 
What-is-Laravel-23-August-2017.pptx
AbhijeetKumar456867
 
NodeJS - Server Side JS
Ganesh Kondal
 
Java Collections | Collections Framework in Java | Java Tutorial For Beginner...
Edureka!
 
Rest api standards and best practices
Ankita Mahajan
 
Introduction to the Web API
Brad Genereaux
 
Spring boot
Pradeep Shanmugam
 
REST API and CRUD
Prem Sanil
 
Spring data jpa
Jeevesh Pandey
 
Ad

Similar to Introduction to laravel framework (20)

PPTX
Laravel for Web Artisans
Raf Kewl
 
PDF
RESTful web services
Tudor Constantin
 
PDF
Doctrine For Beginners
Jonathan Wage
 
PDF
Php summary
Michelle Darling
 
PDF
Data models in Angular 1 & 2
Adam Klein
 
PDF
SF Elixir Meetup - RethinkDB
Peter Hamilton
 
PPTX
Angular 2 Architecture (Bucharest 26/10/2016)
Eyal Vardi
 
PPTX
Laravel
Sayed Ahmed
 
ZIP
What's new in the Drupal 7 API?
Alexandru Badiu
 
PPTX
Laravel5 Introduction and essentials
Pramod Kadam
 
PPT
Corephpcomponentpresentation 1211425966721657-8
PrinceGuru MS
 
PPT
Core Php Component Presentation
John Coonen
 
PPTX
Protractor framework – how to make stable e2e tests for Angular applications
Ludmila Nesvitiy
 
PPTX
JS Fest 2019/Autumn. Maciej Treder. Angular Schematics - Develop for developers
JSFestUA
 
PDF
Scalable web application architecture
postrational
 
PPT
Backbone js
husnara mohammad
 
PDF
Advanced Php - Macq Electronique 2010
Michelangelo van Dam
 
PPTX
REST APIs in Laravel 101
Samantha Geitz
 
PPTX
Web Technologies - forms and actions
Aren Zomorodian
 
PPTX
SEF2013 - A jQuery Primer for SharePoint
Marc D Anderson
 
Laravel for Web Artisans
Raf Kewl
 
RESTful web services
Tudor Constantin
 
Doctrine For Beginners
Jonathan Wage
 
Php summary
Michelle Darling
 
Data models in Angular 1 & 2
Adam Klein
 
SF Elixir Meetup - RethinkDB
Peter Hamilton
 
Angular 2 Architecture (Bucharest 26/10/2016)
Eyal Vardi
 
Laravel
Sayed Ahmed
 
What's new in the Drupal 7 API?
Alexandru Badiu
 
Laravel5 Introduction and essentials
Pramod Kadam
 
Corephpcomponentpresentation 1211425966721657-8
PrinceGuru MS
 
Core Php Component Presentation
John Coonen
 
Protractor framework – how to make stable e2e tests for Angular applications
Ludmila Nesvitiy
 
JS Fest 2019/Autumn. Maciej Treder. Angular Schematics - Develop for developers
JSFestUA
 
Scalable web application architecture
postrational
 
Backbone js
husnara mohammad
 
Advanced Php - Macq Electronique 2010
Michelangelo van Dam
 
REST APIs in Laravel 101
Samantha Geitz
 
Web Technologies - forms and actions
Aren Zomorodian
 
SEF2013 - A jQuery Primer for SharePoint
Marc D Anderson
 
Ad

Recently uploaded (20)

PDF
Advances in Ultra High Voltage (UHV) Transmission and Distribution Systems.pdf
Nabajyoti Banik
 
PDF
Orbitly Pitch Deck|A Mission-Driven Platform for Side Project Collaboration (...
zz41354899
 
PDF
madgavkar20181017ppt McKinsey Presentation.pdf
georgschmitzdoerner
 
PDF
Why Your AI & Cybersecurity Hiring Still Misses the Mark in 2025
Virtual Employee Pvt. Ltd.
 
PDF
Accelerating Oracle Database 23ai Troubleshooting with Oracle AHF Fleet Insig...
Sandesh Rao
 
PDF
Software Development Company | KodekX
KodekX
 
PPTX
ChatGPT's Deck on The Enduring Legacy of Fax Machines
Greg Swan
 
PDF
BLW VOCATIONAL TRAINING SUMMER INTERNSHIP REPORT
codernjn73
 
PDF
CIFDAQ's Token Spotlight: SKY - A Forgotten Giant's Comeback?
CIFDAQ
 
PDF
This slide provides an overview Technology
mineshkharadi333
 
PDF
DevOps & Developer Experience Summer BBQ
AUGNYC
 
PDF
AI Unleashed - Shaping the Future -Starting Today - AIOUG Yatra 2025 - For Co...
Sandesh Rao
 
PDF
How-Cloud-Computing-Impacts-Businesses-in-2025-and-Beyond.pdf
Artjoker Software Development Company
 
PDF
Enable Enterprise-Ready Security on IBM i Systems.pdf
Precisely
 
PDF
agentic-ai-and-the-future-of-autonomous-systems.pdf
siddharthnetsavvies
 
PDF
Make GenAI investments go further with the Dell AI Factory - Infographic
Principled Technologies
 
PDF
NewMind AI Weekly Chronicles - July'25 - Week IV
NewMind AI
 
PDF
Building High-Performance Oracle Teams: Strategic Staffing for Database Manag...
SMACT Works
 
PDF
Using Anchore and DefectDojo to Stand Up Your DevSecOps Function
Anchore
 
PDF
Security features in Dell, HP, and Lenovo PC systems: A research-based compar...
Principled Technologies
 
Advances in Ultra High Voltage (UHV) Transmission and Distribution Systems.pdf
Nabajyoti Banik
 
Orbitly Pitch Deck|A Mission-Driven Platform for Side Project Collaboration (...
zz41354899
 
madgavkar20181017ppt McKinsey Presentation.pdf
georgschmitzdoerner
 
Why Your AI & Cybersecurity Hiring Still Misses the Mark in 2025
Virtual Employee Pvt. Ltd.
 
Accelerating Oracle Database 23ai Troubleshooting with Oracle AHF Fleet Insig...
Sandesh Rao
 
Software Development Company | KodekX
KodekX
 
ChatGPT's Deck on The Enduring Legacy of Fax Machines
Greg Swan
 
BLW VOCATIONAL TRAINING SUMMER INTERNSHIP REPORT
codernjn73
 
CIFDAQ's Token Spotlight: SKY - A Forgotten Giant's Comeback?
CIFDAQ
 
This slide provides an overview Technology
mineshkharadi333
 
DevOps & Developer Experience Summer BBQ
AUGNYC
 
AI Unleashed - Shaping the Future -Starting Today - AIOUG Yatra 2025 - For Co...
Sandesh Rao
 
How-Cloud-Computing-Impacts-Businesses-in-2025-and-Beyond.pdf
Artjoker Software Development Company
 
Enable Enterprise-Ready Security on IBM i Systems.pdf
Precisely
 
agentic-ai-and-the-future-of-autonomous-systems.pdf
siddharthnetsavvies
 
Make GenAI investments go further with the Dell AI Factory - Infographic
Principled Technologies
 
NewMind AI Weekly Chronicles - July'25 - Week IV
NewMind AI
 
Building High-Performance Oracle Teams: Strategic Staffing for Database Manag...
SMACT Works
 
Using Anchore and DefectDojo to Stand Up Your DevSecOps Function
Anchore
 
Security features in Dell, HP, and Lenovo PC systems: A research-based compar...
Principled Technologies
 

Introduction to laravel framework