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
190
Tonic Application Architecture
milon
0
510
High Performance Laravel
milon
7
1.4k
JavaScript for the rest of us
milon
0
5.9k
Other Decks in Programming
See All in Programming
エラーって何種類あるの?
kajitack
5
240
F#で自在につくる静的ブログサイト - 関数型まつり2025
pizzacat83
0
310
Cursor AI Agentと伴走する アプリケーションの高速リプレイス
daisuketakeda
1
120
Benchmark
sysong
0
210
Select API from Kotlin Coroutine
jmatsu
1
180
コード書くの好きな人向けAIコーディング活用tips #orestudy
77web
3
320
データベースコネクションプール(DBCP)の変遷と理解
fujikawa8
1
270
2度もゼロから書き直して、やっとブラウザでぬるぬる動くAIに辿り着いた話
tomoino
0
160
Elixir で IoT 開発、 Nerves なら簡単にできる!?
pojiro
1
150
Cursor Meetup Tokyo ゲノミクスとCursor: 進化と制約のあいだ
koido
2
1k
Cloudflare Realtime と Workers でつくるサーバーレス WebRTC
nekoya3
0
420
GraphRAGの仕組みまるわかり
tosuri13
7
440
Featured
See All Featured
Why You Should Never Use an ORM
jnunemaker
PRO
56
9.4k
Put a Button on it: Removing Barriers to Going Fast.
kastner
60
3.9k
Making the Leap to Tech Lead
cromwellryan
134
9.3k
Cheating the UX When There Is Nothing More to Optimize - PixelPioneers
stephaniewalter
281
13k
Navigating Team Friction
lara
187
15k
A designer walks into a library…
pauljervisheath
206
24k
The Web Performance Landscape in 2024 [PerfNow 2024]
tammyeverts
8
660
CSS Pre-Processors: Stylus, Less & Sass
bermonpainter
357
30k
How to Ace a Technical Interview
jacobian
277
23k
Rails Girls Zürich Keynote
gr2m
94
14k
Into the Great Unknown - MozCon
thekraken
39
1.8k
Being A Developer After 40
akosma
90
590k
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