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.6k
1
Share
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
More Decks by Nuruzzaman Milon
See All by Nuruzzaman Milon
Why you should consider statically generated site for your next website?
milon
0
240
Tonic Application Architecture
milon
0
550
High Performance Laravel
milon
7
1.4k
JavaScript for the rest of us
milon
0
6.2k
Other Decks in Programming
See All in Programming
PDI: Como Alavancar Sua Carreira e Seu Negócio
marcelgsantos
0
120
AI時代のエンジニアリングの原則 / Engineering Principles in the AI Era
haru860
0
180
GNU Makeの使い方 / How to use GNU Make
kaityo256
PRO
16
5.6k
飯MCP
yusukebe
0
510
Offline should be the norm: building local-first apps with CRDTs & Kotlin Multiplatform
renaudmathieu
0
210
感情を設計する
ichimichi
5
1.5k
의존성 주입과 모듈화
fornewid
0
130
PCOVから学ぶコードカバレッジ #phpcon_odawara
o0h
PRO
0
260
書籍「ユーザーストーリーマッピング」が私のバイブル
asumikam
3
310
Google Nest CamとApple Vision frameworkと猫🐈🐈⬛ / onishi50
yutailang0119
0
110
2026-03-27 #terminalnight 変数展開とコマンド展開でターミナル作業をスマートにする方法
masasuzu
0
330
CDK Deployのための ”反響定位”
watany
4
750
Featured
See All Featured
Raft: Consensus for Rubyists
vanstee
141
7.4k
The Limits of Empathy - UXLibs8
cassininazir
1
300
The untapped power of vector embeddings
frankvandijk
2
1.7k
Practical Tips for Bootstrapping Information Extraction Pipelines
honnibal
25
1.9k
Jess Joyce - The Pitfalls of Following Frameworks
techseoconnect
PRO
1
130
Collaborative Software Design: How to facilitate domain modelling decisions
baasie
0
200
[RailsConf 2023] Rails as a piece of cake
palkan
59
6.5k
職位にかかわらず全員がリーダーシップを発揮するチーム作り / Building a team where everyone can demonstrate leadership regardless of position
madoxten
62
53k
Ecommerce SEO: The Keys for Success Now & Beyond - #SERPConf2024
aleyda
1
1.9k
How to train your dragon (web standard)
notwaldorf
97
6.6k
A Tale of Four Properties
chriscoyier
163
24k
The Curious Case for Waylosing
cassininazir
0
300
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