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
200
Tonic Application Architecture
milon
0
520
High Performance Laravel
milon
7
1.4k
JavaScript for the rest of us
milon
0
6k
Other Decks in Programming
See All in Programming
CSC509 Lecture 05
javiergs
PRO
0
300
株式会社 Sun terras カンパニーデック
sunterras
0
230
iOSアプリの信頼性を向上させる取り組み/ios-app-improve-reliability
shino8rayu9
0
150
クラシルを支える技術と組織
rakutek
0
190
CSC305 Lecture 01
javiergs
PRO
1
400
Goで実践するドメイン駆動開発 AIと歩み始めた新規プロダクト開発の現在地
imkaoru
4
670
The Past, Present, and Future of Enterprise Java
ivargrimstad
0
150
Local Peer-to-Peer APIはどのように使われていくのか?
hal_spidernight
2
450
アメ車でサンノゼを走ってきたよ!
s_shimotori
0
140
詳しくない分野でのVibe Codingで困ったことと学び/vibe-coding-in-unfamiliar-area
shibayu36
3
4.5k
フロントエンド開発に役立つクライアントプログラム共通のノウハウ / Universal client-side programming best practices for frontend development
nrslib
7
3.9k
Railsだからできる 例外業務に禍根を残さない 設定設計パターン
ei_ei_eiichi
0
340
Featured
See All Featured
Statistics for Hackers
jakevdp
799
220k
For a Future-Friendly Web
brad_frost
180
9.9k
Designing Experiences People Love
moore
142
24k
The Psychology of Web Performance [Beyond Tellerrand 2023]
tammyeverts
49
3.1k
Keith and Marios Guide to Fast Websites
keithpitt
411
22k
Understanding Cognitive Biases in Performance Measurement
bluesmoon
29
2.6k
How GitHub (no longer) Works
holman
315
140k
Into the Great Unknown - MozCon
thekraken
40
2.1k
Done Done
chrislema
185
16k
Embracing the Ebb and Flow
colly
88
4.8k
The Cost Of JavaScript in 2023
addyosmani
53
9k
Creating an realtime collaboration tool: Agile Flush - .NET Oxford
marcduiker
32
2.2k
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