SlideShare a Scribd company logo
Laravel
The Right
Way
marabesi
@MatheusMarabesi
Laravel   the right way
DISCLAIMER
MODELS
WRONG
MUCH BETTER
CONTROLLERS
WRONG
Laravel   the right way
1
1
2
1
B
E
T
T
E
R
2
3
Laravel   the right way
pingpong-labs/modules
modules/
├── Blog/
├── Assets/
├── Config/
├── Console/
├── Database/
├── Migrations/
├── Seeders/
├── Entities/
├── Http/
├── Controllers/
├── Middleware/
├── Requests/
├── routes.php
├── Providers/
D.I
public function newDeal(Request $request) {
$data = $request->all();
// some stuff
$page = "new_deal/new_deal_" . $data['page'];
return view($page, [
'active_step' => $data['page'],
'template_step' => 'app_deal_steps',
'origin' => 'new_deal',
'title' => 'New Deal',
'customers' => new AppDeals(),
]);
}
public function newDeal(Request $request, AppDeals $deal) {
$data = $request->all();
// some stuff
$page = "new_deal/new_deal_" . $data['page'];
return view($page, [
'active_step' => $data['page'],
'template_step' => 'app_deal_steps',
'origin' => 'new_deal',
'title' => 'New Deal',
'customers' => $deal,
]);
}
public function store(Request $request)
{
$result['message'] = 'Success';
try {
$data = $request->all();
$userId = Auth::user()->id;
$company = App::make(Company::class)
->where('created_by', $userId)
->first();
$company->save($data);
} catch (Exception $error) {
$result['message'] = $error->getMessage();
}
return response()->json($result);
}
TESTING
PHPUnit_Framework_TestCase
PHPUnit_Framework_TestCase
TestCase
PHPUnit_Framework_TestCase
TestCase
Class TestCase
padraic/mockery
public function update(Request $request)
{
// do something
return Auth::user()->id;
}
Laravel   the right way
WHAT CAN
I DO ?
Laravel   the right way
+

More Related Content

PDF
Laravel, the right way - PHPConference 2016
PDF
TDC 2016 (Florianópolis) - Vá para o próximo nível - Dicas e truques para a c...
PDF
ZCPE - PHP Conference 2015
PDF
TDC2015 Porto Alegre - Automate everything with Phing !
PDF
Darkmira Tour PHP 2016 - Automatizando Tarefas com Phing
PDF
PHP and Rich Internet Applications
PDF
エロサイト管理者の憂鬱3 - Hokkaiodo.pm#4 -
PDF
Twib in Yokoahma.pm 2010/3/5
Laravel, the right way - PHPConference 2016
TDC 2016 (Florianópolis) - Vá para o próximo nível - Dicas e truques para a c...
ZCPE - PHP Conference 2015
TDC2015 Porto Alegre - Automate everything with Phing !
Darkmira Tour PHP 2016 - Automatizando Tarefas com Phing
PHP and Rich Internet Applications
エロサイト管理者の憂鬱3 - Hokkaiodo.pm#4 -
Twib in Yokoahma.pm 2010/3/5

What's hot (19)

PDF
Decoupling Objects With Standard Interfaces
PDF
Blog Hacks 2011
PDF
YAPC::Asia 2010 Twitter解析サービス
PDF
PHP and Rich Internet Applications
PPTX
4. Php MongoDB view_data
PDF
Build your own RESTful API with Laravel
PDF
Getting out of Callback Hell in PHP
PDF
WordPress: From Antispambot to Zeroize
PDF
Laravel - PHP For artisans
PDF
WordPress Kitchen 2014 - Александр Стриха: Кеширование в WordPress
PDF
Phing - PHP Conference 2015
PPTX
Алексей Плеханов: Новинки Laravel 5
PDF
Generating Power with Yield
PDF
Mojolicious
PPTX
London XQuery Meetup: Querying the World (Web Scraping)
PPTX
16.mysql stored procedures in laravel
DOCX
Example code for the SADI BMI Calculator Web Service
DOCX
Sadi service
PPTX
14. CodeIgniter adaugarea inregistrarilor
Decoupling Objects With Standard Interfaces
Blog Hacks 2011
YAPC::Asia 2010 Twitter解析サービス
PHP and Rich Internet Applications
4. Php MongoDB view_data
Build your own RESTful API with Laravel
Getting out of Callback Hell in PHP
WordPress: From Antispambot to Zeroize
Laravel - PHP For artisans
WordPress Kitchen 2014 - Александр Стриха: Кеширование в WordPress
Phing - PHP Conference 2015
Алексей Плеханов: Новинки Laravel 5
Generating Power with Yield
Mojolicious
London XQuery Meetup: Querying the World (Web Scraping)
16.mysql stored procedures in laravel
Example code for the SADI BMI Calculator Web Service
Sadi service
14. CodeIgniter adaugarea inregistrarilor
Ad

Viewers also liked (9)

PDF
TDC 2015 - Wearables no IoT (PT-BR)
PDF
Web Sockets - HTML5
PDF
TDC São Paulo 2016 - Become a jedi with php streams
PDF
GDG Passo fundo - Apps with unit tests (Karma + jasmine + angular)
PDF
From legacy code to continuous integration
PDF
scdevsumit 2016 - Become a jedi with php streams
PDF
Software Design Patterns in Laravel by Phill Sparks
PDF
Introduction to TDD (PHPunit examples)
PDF
Control your house with the elePHPant - PHPConf2016
TDC 2015 - Wearables no IoT (PT-BR)
Web Sockets - HTML5
TDC São Paulo 2016 - Become a jedi with php streams
GDG Passo fundo - Apps with unit tests (Karma + jasmine + angular)
From legacy code to continuous integration
scdevsumit 2016 - Become a jedi with php streams
Software Design Patterns in Laravel by Phill Sparks
Introduction to TDD (PHPunit examples)
Control your house with the elePHPant - PHPConf2016
Ad

Similar to Laravel the right way (20)

PDF
Best Practices in Plugin Development (WordCamp Seattle)
PDF
Bootstrat REST APIs with Laravel 5
PPTX
Magento Live Australia 2016: Request Flow
KEY
PDF
Unit testing after Zend Framework 1.8
PDF
Web applications with Catalyst
PDF
Perl web app 테스트전략
PDF
Load Testing with PHP and RedLine13
PDF
2023 - Drupalcon - How Drupal builds your pages
PDF
Drupalcon 2023 - How Drupal builds your pages.pdf
PPTX
Drupal 8 migrate!
PDF
Building Testable PHP Applications
PPTX
Multi tenant laravel
PDF
Redis & ZeroMQ: How to scale your application
PDF
TYPO3 Flow: Beyond the Blog Example (Inspiring Flow 2013)
PDF
OWASP TOP 10 for PHP Programmers
PDF
symfony on action - WebTech 207
PDF
Doctrine For Beginners
PDF
Curso Symfony - Clase 4
PDF
What happens in laravel 4 bootstraping
Best Practices in Plugin Development (WordCamp Seattle)
Bootstrat REST APIs with Laravel 5
Magento Live Australia 2016: Request Flow
Unit testing after Zend Framework 1.8
Web applications with Catalyst
Perl web app 테스트전략
Load Testing with PHP and RedLine13
2023 - Drupalcon - How Drupal builds your pages
Drupalcon 2023 - How Drupal builds your pages.pdf
Drupal 8 migrate!
Building Testable PHP Applications
Multi tenant laravel
Redis & ZeroMQ: How to scale your application
TYPO3 Flow: Beyond the Blog Example (Inspiring Flow 2013)
OWASP TOP 10 for PHP Programmers
symfony on action - WebTech 207
Doctrine For Beginners
Curso Symfony - Clase 4
What happens in laravel 4 bootstraping

More from Matheus Marabesi (12)

PDF
IoT Project postmortem
PDF
Testing with Laravel - 7Masters 2018 (Laravel)
PDF
Laravel collections an overview - Laravel SP
PDF
Becoming an author - Sharing knowledge
PDF
Docker 101 - Getting started
PDF
Introduction to IoT and PHP - Nerdzão day #1
PDF
Todos os passos para a certificação PHP - PHPExperience2017
PDF
IoT powered by PHP and streams - PHPExperience2017
PDF
7masters - MongoDb
PDF
CK 10 - Automate all the things 2.0
PPTX
Arduino day 2015 - UFABC (PT-BR)
PPT
7º Connecting Knowledge (PT-BR)
IoT Project postmortem
Testing with Laravel - 7Masters 2018 (Laravel)
Laravel collections an overview - Laravel SP
Becoming an author - Sharing knowledge
Docker 101 - Getting started
Introduction to IoT and PHP - Nerdzão day #1
Todos os passos para a certificação PHP - PHPExperience2017
IoT powered by PHP and streams - PHPExperience2017
7masters - MongoDb
CK 10 - Automate all the things 2.0
Arduino day 2015 - UFABC (PT-BR)
7º Connecting Knowledge (PT-BR)

Recently uploaded (20)

PPTX
Slides PPTX World Game (s) Eco Economic Epochs.pptx
PPTX
INTERNET------BASICS-------UPDATED PPT PRESENTATION
PDF
The Internet -By the Numbers, Sri Lanka Edition
PDF
Sims 4 Historia para lo sims 4 para jugar
PPTX
innovation process that make everything different.pptx
PPTX
presentation_pfe-universite-molay-seltan.pptx
PDF
WebRTC in SignalWire - troubleshooting media negotiation
PPTX
522797556-Unit-2-Temperature-measurement-1-1.pptx
PDF
Tenda Login Guide: Access Your Router in 5 Easy Steps
PDF
Vigrab.top – Online Tool for Downloading and Converting Social Media Videos a...
PPTX
Introduction about ICD -10 and ICD11 on 5.8.25.pptx
PDF
How to Ensure Data Integrity During Shopify Migration_ Best Practices for Sec...
PPTX
E -tech empowerment technologies PowerPoint
PPTX
Power Point - Lesson 3_2.pptx grad school presentation
PDF
Unit-1 introduction to cyber security discuss about how to secure a system
PDF
The New Creative Director: How AI Tools for Social Media Content Creation Are...
PDF
💰 𝐔𝐊𝐓𝐈 𝐊𝐄𝐌𝐄𝐍𝐀𝐍𝐆𝐀𝐍 𝐊𝐈𝐏𝐄𝐑𝟒𝐃 𝐇𝐀𝐑𝐈 𝐈𝐍𝐈 𝟐𝟎𝟐𝟓 💰
PPTX
Introduction to Information and Communication Technology
PDF
Cloud-Scale Log Monitoring _ Datadog.pdf
PPTX
introduction about ICD -10 & ICD-11 ppt.pptx
Slides PPTX World Game (s) Eco Economic Epochs.pptx
INTERNET------BASICS-------UPDATED PPT PRESENTATION
The Internet -By the Numbers, Sri Lanka Edition
Sims 4 Historia para lo sims 4 para jugar
innovation process that make everything different.pptx
presentation_pfe-universite-molay-seltan.pptx
WebRTC in SignalWire - troubleshooting media negotiation
522797556-Unit-2-Temperature-measurement-1-1.pptx
Tenda Login Guide: Access Your Router in 5 Easy Steps
Vigrab.top – Online Tool for Downloading and Converting Social Media Videos a...
Introduction about ICD -10 and ICD11 on 5.8.25.pptx
How to Ensure Data Integrity During Shopify Migration_ Best Practices for Sec...
E -tech empowerment technologies PowerPoint
Power Point - Lesson 3_2.pptx grad school presentation
Unit-1 introduction to cyber security discuss about how to secure a system
The New Creative Director: How AI Tools for Social Media Content Creation Are...
💰 𝐔𝐊𝐓𝐈 𝐊𝐄𝐌𝐄𝐍𝐀𝐍𝐆𝐀𝐍 𝐊𝐈𝐏𝐄𝐑𝟒𝐃 𝐇𝐀𝐑𝐈 𝐈𝐍𝐈 𝟐𝟎𝟐𝟓 💰
Introduction to Information and Communication Technology
Cloud-Scale Log Monitoring _ Datadog.pdf
introduction about ICD -10 & ICD-11 ppt.pptx

Laravel the right way