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
24
Tonic Application Architecture
milon
0
350
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
Amazon Lookout for Visionで 筆跡鑑定してみた
cmnakamurashogo
0
160
NestJS_meetup_atamaplus
atamaplus
0
210
Isar勉強会
hoddy3190
0
420
Efficient UI testing in Android
alexzhukovich
1
120
SRE NEXT 2022に学ぶこれからのSREキャリア
fukubaka0825
2
390
リーダブルテストコード / #vstat
jnchito
47
35k
実践 SpiceDB - クライドネイティブ時代をサバイブできるパーミッション管理の実装を目指して / Practical SpiceDB
lmt_swallow
0
130
アジャイルで不確実性に向き合うための開発タスクの切り方
tanden
4
1.1k
Cloudflare WorkersでGoのHTTPサーバーを動かすライブラリを作った話
syumai
0
150
モデルの定義に基づくバリデーションを実現するためのpydantic入門
daikikatsuragawa
0
120
Enzyme から React Native Testing Library に移行した経緯 / 2022-07-20
tamago3keran
1
160
SGGとは
inoue2002
0
430
Featured
See All Featured
Java REST API Framework Comparison - PWX 2021
mraible
PRO
11
4.8k
Art Directing for the Web. Five minutes with CSS Template Areas
malarkey
196
9.5k
How STYLIGHT went responsive
nonsquared
85
4k
Dealing with People You Can't Stand - Big Design 2015
cassininazir
351
21k
The Pragmatic Product Professional
lauravandoore
19
3.1k
For a Future-Friendly Web
brad_frost
166
7.5k
Web Components: a chance to create the future
zenorocha
303
40k
What's in a price? How to price your products and services
michaelherold
229
9.4k
Easily Structure & Communicate Ideas using Wireframe
afnizarnur
181
15k
A Tale of Four Properties
chriscoyier
149
21k
ReactJS: Keep Simple. Everything can be a component!
pedronauck
655
120k
Mobile First: as difficult as doing things right
swwweet
213
7.6k
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