developer's diary

最近はc#のエントリが多いです

laravelのドキュメント読むところMUST

以下エントリを書いたけども、もう少し細かく、MUSTな箇所を抜き出しておいた方がよさそう。

mitsugeek.net

ということで、もう少し細かくリンクをまとめました。

ここは抑えといた方が良い内容です。

ルーティングについて読んでおくべき事柄

Basic Routing(基本的なルーティング)

ルーティングはどのURLにアクセスしたら何をするか。を司るところです。

言語 URL
英語 https://laravel.com/docs/8.x/routing#basic-routing
日本語 https://readouble.com/laravel/8.x/ja/routing.html#basic-routing

Route Parameters(ルートパラメータ)

ルーティングのURLには「/blog/entry/139」のように、

言語 URL
英語 https://laravel.com/docs/8.x/routing#route-parameters
日本語 https://readouble.com/laravel/8.x/ja/routing.html#route-parameters

Named Routes (名前付きルート)

言語 URL
英語 https://laravel.com/docs/8.x/routing#named-routes
日本語 https://readouble.com/laravel/8.x/ja/routing.html#named-routes

コントローラについて読んでおくべき事柄

Basic Controllers (基本のコントローラ)

言語 URL
英語 https://laravel.com/docs/8.x/controllers#basic-controllers
日本語 https://readouble.com/laravel/8.x/ja/controllers.html#basic-controllers

リクエストについて読んでおくべき事柄

Accessing The Request(リクエストへのアクセス)

言語 URL
英語 https://laravel.com/docs/8.x/requests#accessing-the-request
日本語 https://readouble.com/laravel/8.x/ja/requests.html#accessing-the-request

Retrieving Input (入力の取得)

言語 URL
英語 https://laravel.com/docs/8.x/requests#retrieving-input
日本語 https://readouble.com/laravel/8.x/ja/requests.html#retrieving-input

Retrieving Uploaded Files (アップロード済みファイルの取得)

言語 URL
英語 https://laravel.com/docs/8.x/requests#retrieving-uploaded-files
日本語 https://readouble.com/laravel/8.x/ja/requests.html#retrieving-uploaded-files

レスポンスについて読んでおくべき事柄

Redirecting To Named Routes (名前付きルートへのリダイレクト)

言語 URL
英語 https://laravel.com/docs/8.x/responses#redirecting-named-routes
日本語 https://readouble.com/laravel/8.x/ja/responses.html#redirecting-named-routes

File Downloads (Fileダウンロード)

言語 URL
英語 https://laravel.com/docs/8.x/responses#file-downloads
日本語 https://readouble.com/laravel/8.x/ja/responses.html#file-downloads

ビューについて読んでおくべき事柄

Introduction(イントロダクション)

言語 URL
英語 https://laravel.com/docs/8.x/views#introduction
日本語 https://readouble.com/laravel/8.x/ja/views.html#introduction

Nested View Directories(ネストしたビューディレクトリ)

言語 URL
英語 https://laravel.com/docs/8.x/views#nested-view-directories
日本語 https://readouble.com/laravel/8.x/ja/views.html#nested-view-directories

URL生成について読んでおくべき事柄

URLs For Named Routes (名前付きルートのURL)

言語 URL
英語 https://laravel.com/docs/8.x/urls#urls-for-named-routes
日本語 https://readouble.com/laravel/8.x/ja/urls.html#urls-for-named-routes

Bladeテンプレートについて読んでおくべき事柄

Displaying Data (データの表示)

言語 URL
英語 https://laravel.com/docs/8.x/blade#displaying-data
日本語 https://readouble.com/laravel/8.x/ja/blade.html#displaying-data

HTML Entity Encoding (HTMLエンティティエンコーディング)

言語 URL
英語 https://laravel.com/docs/8.x/blade#html-entity-encoding
日本語 https://readouble.com/laravel/8.x/ja/blade.html#html-entity-encoding