Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
What are you expecting from next version of Lar...
Search
Nuruzzaman Milon
May 30, 2015
Programming
1
1.6k
What are you expecting from next version of Laravel?
New features from Laravel PHP Framework 5.1
phpXperts meetup-01 presentation
Nuruzzaman Milon
May 30, 2015
Tweet
Share
More Decks by Nuruzzaman Milon
See All by Nuruzzaman Milon
Why you should consider statically generated site for your next website?
milon
0
210
Tonic Application Architecture
milon
0
530
High Performance Laravel
milon
7
1.4k
JavaScript for the rest of us
milon
0
6k
Other Decks in Programming
See All in Programming
Microservices Platforms: When Team Topologies Meets Microservices Patterns
cer
PRO
0
200
Vueで学ぶデータ構造入門 リンクリストとキューでリアクティビティを捉える / Vue Data Structures: Linked Lists and Queues for Reactivity
konkarin
1
320
無秩序からの脱却 / Emergence from chaos
nrslib
1
6.4k
Nitro v3
kazupon
2
320
PHPライセンス変更の議論を通じて学ぶOSSライセンスの基礎
matsuo_atsushi
0
170
Duke on CRaC with Jakarta EE
ivargrimstad
0
160
Feature Flags Suck! - KubeCon Atlanta 2025
phodgson
0
150
TVerのWeb内製化 - 開発スピードと品質を両立させるまでの道のり
techtver
PRO
3
1.2k
[堅牢.py #1] テストを書かない研究者に送る、最初にテストを書く実験コード入門 / Let's start your ML project by writing tests
shunk031
11
5.3k
Reactive Thinking with Signals and the new Resource API
manfredsteyer
PRO
0
110
全員アーキテクトで挑む、 巨大で高密度なドメインの紐解き方
agatan
5
6.7k
アーキテクチャと考える迷子にならない開発者テスト
irof
9
3.2k
Featured
See All Featured
Scaling GitHub
holman
464
140k
Git: the NoSQL Database
bkeepers
PRO
432
66k
Fantastic passwords and where to find them - at NoRuKo
philnash
52
3.5k
GraphQLとの向き合い方2022年版
quramy
49
14k
Rebuilding a faster, lazier Slack
samanthasiow
84
9.3k
Facilitating Awesome Meetings
lara
57
6.6k
The Power of CSS Pseudo Elements
geoffreycrofte
80
6.1k
Designing Experiences People Love
moore
142
24k
Art, The Web, and Tiny UX
lynnandtonic
303
21k
Helping Users Find Their Own Way: Creating Modern Search Experiences
danielanewman
31
3k
The Psychology of Web Performance [Beyond Tellerrand 2023]
tammyeverts
49
3.2k
Improving Core Web Vitals using Speculation Rules API
sergeychernyshev
21
1.3k
Transcript
None
None
None
None
None
None
None
None
@extends('layouts.master') @inject('stats', 'App\StatisticsService') <div> <span>Total Customer:</span> {{ $stats->getCustomerCount() }} </div>
None
@server(['homestead' => '127.0.0.1']) @task('git') git init git commit -am 'Initial
Commit' @endtask @macro('commit') git @endmacro
> envoy run commit > composer global update
None
class VerifyRoles{ public function handle($request, $next, $role = null){ //your
logic goes here } } Route::get('/dashboard', ['middleware' => 'role:admin', function(){ return view('dashboard'); } ]);
None
None
None
<?php namespace App\Http\Middleware; use Illuminate\Foundation\Http\Middleware\VerifyCsrfToken as BaseVerifier; class VerifyCsrfToken as
BaseVerifier{ protected $except = [ '/payment/callback', '/webhook/*' ]; }
None
// file: database/factories/ModelFactory.php $factory->define('App\User', function ($faker) { return [ 'name'
=> $faker->name, 'email' => $faker->email, 'password' => str_random(10), 'remember_token' => str_random(10), ]; });
None
None
None