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
170
Tonic Application Architecture
milon
0
490
High Performance Laravel
milon
7
1.3k
JavaScript for the rest of us
milon
0
5.9k
Other Decks in Programming
See All in Programming
Go の GC の不得意な部分を克服したい
taiyow
2
760
わたしの星のままで一番星になる ~ 出産を機にSIerからEC事業会社に転職した話 ~
kimura_m_29
0
180
tidymodelsによるtidyな生存時間解析 / Japan.R2024
dropout009
1
740
Monixと常駐プログラムの勘どころ / Scalaわいわい勉強会 #4
stoneream
0
270
Keeping it Ruby: Why Your Product Needs a Ruby SDK - RubyWorld 2024
envek
0
180
create_tableをしただけなのに〜囚われのuuid編〜
daisukeshinoku
0
240
Асинхронность неизбежна: как мы проектировали сервис уведомлений
lamodatech
0
650
[JAWS-UG横浜 #76] イケてるアップデートを宇宙いち早く紹介するよ!
maroon1st
0
450
短期間での新規プロダクト開発における「コスパの良い」Goのテスト戦略」 / kamakura.go
n3xem
2
170
なまけものオバケたち -PHP 8.4 に入った新機能の紹介-
tanakahisateru
1
120
From Translations to Multi Dimension Entities
alexanderschranz
2
130
第5回日本眼科AI学会総会_AIコンテスト_3位解法
neilsaw
0
170
Featured
See All Featured
Art, The Web, and Tiny UX
lynnandtonic
298
20k
How to Create Impact in a Changing Tech Landscape [PerfNow 2023]
tammyeverts
48
2.2k
Large-scale JavaScript Application Architecture
addyosmani
510
110k
Java REST API Framework Comparison - PWX 2021
mraible
PRO
28
8.3k
YesSQL, Process and Tooling at Scale
rocio
169
14k
Code Reviewing Like a Champion
maltzj
520
39k
The Cost Of JavaScript in 2023
addyosmani
45
7k
XXLCSS - How to scale CSS and keep your sanity
sugarenia
247
1.3M
Distributed Sagas: A Protocol for Coordinating Microservices
caitiem20
330
21k
Agile that works and the tools we love
rasmusluckow
328
21k
"I'm Feeling Lucky" - Building Great Search Experiences for Today's Users (#IAC19)
danielanewman
226
22k
The Invisible Side of Design
smashingmag
298
50k
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