Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Speaker Deck
PRO
Sign in
Sign up for free
What are you expecting from next version of Laravel?
Nuruzzaman Milon
May 30, 2015
Programming
1
1.5k
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
42
Tonic Application Architecture
milon
0
370
High Performance Laravel
milon
7
1.2k
JavaScript for the rest of us
milon
0
5.6k
Other Decks in Programming
See All in Programming
Step Functions Distributed Map を使ってみた
codemountains
0
100
爆速の日経電子版開発の今
shinyaigeek
1
480
NGK2023S - OCaml最高! スマホ開発にも使えちゃう?!
haochenxie
0
110
Functional Data Engineering - A Blueprint for adopting functional principles in data pipeline
vananth22
0
160
低レイヤーから始める GUI
fadis
18
9.2k
Makuakeの認証基盤とRe-Architectureチーム
bmf_san
0
150
(新米)エンジニアリングマネージャーのしごと #RSGT2023
murabayashi
9
5.4k
Rによる大規模データの処理
s_uryu
2
620
Quarto Tips for Academic Presentation
nicetak
0
890
ちょうぜつ改め21世紀ふつうのソフトウェア設計
tanakahisateru
7
6.1k
Amazon QuickSightのアップデート -re:Invent 2022の復習&2022年ハイライト-
shogo452
0
200
量子コンピュータ時代のプログラミングセミナー / 20221222_Amplify_seminar _route_optimization
fixstars
0
240
Featured
See All Featured
The Web Native Designer (August 2011)
paulrobertlloyd
76
2.2k
4 Signs Your Business is Dying
shpigford
171
20k
Unsuck your backbone
ammeep
659
56k
Optimizing for Happiness
mojombo
365
64k
The World Runs on Bad Software
bkeepers
PRO
59
5.7k
YesSQL, Process and Tooling at Scale
rocio
159
12k
Easily Structure & Communicate Ideas using Wireframe
afnizarnur
182
15k
Why You Should Never Use an ORM
jnunemaker
PRO
49
7.9k
Making Projects Easy
brettharned
102
4.8k
Building an army of robots
kneath
301
40k
Infographics Made Easy
chrislema
235
17k
Product Roadmaps are Hard
iamctodd
38
7.7k
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