[PR]
×
[PR]上記の広告は3ヶ月以上新規記事投稿のないブログに表示されています。新しい記事を書く事で広告が消えます。
[PR]上記の広告は3ヶ月以上新規記事投稿のないブログに表示されています。新しい記事を書く事で広告が消えます。
0 hello I'm hanako
1 hello I'm hanako
2 hello I'm hanako
3 hello I'm JS Bin Output
3 hello I'm JS Bin Output
3 hello I'm JS Bin Output
var i = 0;
for (i = 0; i < 3; i++) {
setTimeout(function(){
console.log(i + " hello I'm " + this.name);
}, 0);
View::composer(
'profile/*', 'App\Http\ViewComposers\ProfileComposer'
);
Just before the view is rendered, the composer's compose method is called with the Illuminate\View\View instance.
view()->composer(‘partials.header’, function ($view) {
$with = array_merge([
'message' => 'This is a message on some page'
], $view->getData());
$view->with($with);
});
view()->creator('profile', 'App\Http\ViewCreators\ProfileCreator');
if($view->offsetExists('language_id')) {
$language_id = $view->offsetGet('language_id');
}
// インデントの幅
"tab_size": 4,
// タブをスペースに変換
"translate_tabs_to_spaces": true,