フレームワークの拡張4.2LaravelイントロダクションLaravelでは多くの点で、フレームワークのコアコンポーネントの動作をカスタマイズでき、完全に置き換えることさえ可能です。
Extending The Framework 4.2 Laravel Introduction Laravel offers many extension points for you to customize the behavior of the framework's core components, or even replace them entirely.多言語化6.0LaravelイントロダクションLaravelのローカリゼーション機能はアプリケーションで多言語をサポートできるように、様々な言語の文字列を便利に取得できる方法を提供します。
Localization 6.0 Laravel Introduction Laravel's localization features provide a convenient way to retrieve strings in various languages, allowing you to easily support multiple languages within your application.モック5.3LaravelイントロダクションLaravelアプリケーションをテストする場合、特定のテストの間は実際に実行されないように、アプリケーションの明確な一部を「モック」したくなります。
Mocking 5.3 Laravel Introduction When testing Laravel applications, you may wish to"mock" certain aspects of your application so they are not actually executed during a given test.デプロイ6.0LaravelイントロダクションLaravelアプリケーションをプロダクションとしてデプロイする準備ができたら、アプリケーションをできるだけ確実かつ、効率的な実行を行うには、いくつか重要な手順を行う必要があります。
Deployment 6.0 Laravel Introduction When you're ready to deploy your Laravel application to production, there are some important things you can do to make sure your application is running as efficiently as possible.メール5.7LaravelイントロダクションLaravelは人気の高いSwiftMailerライブラリーのクリーンでシンプルなAPIを提供しています。SMTP、Mailgun、SparkPost、AmazonSES、sendmailドライバーを提供しており、選択したローカルやクラウドベースのサービスを使い、素早くメール送信が開始できるようにしています。
Mail 5.7 Laravel Introduction Laravel provides a clean, simple API over the popular SwiftMailer library with drivers for SMTP, Mailgun, SparkPost, Amazon SES, and sendmail, allowing you to quickly get started sending mail through a local or cloud based service of your choice.メール6.0LaravelイントロダクションLaravelは人気の高いSwiftMailerライブラリーにより、クリーンでシンプルなAPIを提供しています。SMTP、Mailgun、Postmark、AmazonSES、sendmailドライバーを提供しており、皆さんが選んだローカルやクラウドベースのサービスを使い、素早くメール送信が開始できるように用意しています。
Mail 6.0 Laravel Introduction Laravel provides a clean, simple API over the popular SwiftMailer library with drivers for SMTP, Mailgun, Postmark, Amazon SES, and sendmail, allowing you to quickly get started sending mail through a local or cloud based service of your choice.HTTPテスト6.0LaravelイントロダクションLaravelはアプリケーションに対するHTTPリクエストを作成し、出力を検査するためのとても記述的なAPIを用意しています。
HTTP Tests 6.0 Laravel Introduction Laravel provides a very fluent API for making HTTP requests to your application and examining the output.Eloquent:ミューテタ5.7Laravelイントロダクションアクセサとミューテタはモデルの取得や値を設定するときに、Eloquent属性のフォーマットを可能にします。
Eloquent: Mutators 6.0 Laravel Introduction Accessors and mutators allow you to format Eloquent attribute values when you retrieve or set them on model instances.通知6.0Laravelイントロダクションメール送信に加え、LaravelはSMS(Nexmo使用)、Slackなどの、さまざまな複数チャンネルへ渡る通知をサポートしています。
Notifications 6.0 Laravel Introduction In addition to support for sending email, Laravel provides support for sending notifications across a variety of delivery channels, including mail, SMS(via Nexmo), and Slack.認可5.1Laravelイントロダクション初めから用意されている認証サービスに付け加え、Laravelは認可ロジックを取りまとめ、リソースへのアクセスをコントロールする簡単な手段を提供します。
Authorization 5.1 Laravel Introduction In addition to providing authentication services out of the box, Laravel also provides a simple way to organize authorization logic and control access to resources.Envoyタスクランナー5.0LaravelイントロダクションLaravelEnvoy(使節)は、定義した共通タスクをリモートサーバーで実行するために、クリーンで最小限の記法を提供します。
Envoy Task Runner 5.0 Laravel Introduction Laravel Envoy provides a clean, minimal syntax for defining common tasks you run on your remote servers.Eloquent:APIリソース6.0LaravelイントロダクションAPI構築時、Eloquentモデルと、アプリケーションユーザーに対して実際に返信するJSONリスポンスとの間に、トランスレーション層を設置することが必要となります。
Eloquent: API Resources 6.0 Laravel Introduction When building an API, you may need a transformation layer that sits between your Eloquent models and the JSON responses that are actually returned to your application's users.コマンドバス5.0LaravelイントロダクションLaravelコマンドバスは、シンプルで分かりやすい「コマンド」として実行する必要のあるアプリケーションのタスクをカプセル化する便利なメソッドです。
Command Bus 5.0 Laravel Introduction The Laravel command bus provides a convenient method of encapsulating tasks your application needs to perform into simple, easy to understand"commands.ローカリゼーション5.0LaravelイントロダクションLaravelのLangファサードは、アプリケーションを多言語に対応させるため、様々な言語の翻訳済み文字列を取得する方法を提供します。
Localization 5.0 Laravel Introduction The Laravel Lang facade provides a convenient way of retrieving strings in various languages, allowing you to easily support multiple languages within your application.モック6.0LaravelイントロダクションLaravelアプリケーションをテストするとき、アプリケーションの一部分を「モック」し、特定のテストを行う間は実際のコードを実行したくない場合があります。
Mocking 6.0 Laravel Introduction When testing Laravel applications, you may wish to"mock" certain aspects of your application so they are not actually executed during a given test.HTTPセッション6.0LaravelイントロダクションHTTP駆動のアプリケーションはステートレスのため、リクエスト間に渡りユーザーに関する情報を保存するセッションが提供されています。
HTTP Session 6.0 Laravel Introduction Since HTTP driven applications are stateless, sessions provide a way to store information about the user across multiple requests.コントローラ5.5Laravelイントロダクション全リクエストの処理をルートファイルのクロージャで定義するよりも、コントローラクラスにより組織立てたいと、皆さんも考えるでしょう。
Controllers 5.5 Laravel Introduction Instead of defining all of your request handling logic as Closures in route files, you may wish to organize this behavior using Controller classes.Artisanコンソール6.0LaravelイントロダクションArtisanはLaravelに含まれているコマンドラインインターフェイスです。
Artisan Console 6.0 Laravel Introduction Artisan is the command-line interface included with Laravel..Bladeテンプレート6.0LaravelイントロダクションBladeはシンプルながらパワフルなLaravelのテンプレートエンジンです。
Blade Templates 6.0 Laravel Introduction Blade is the simple, yet powerful templating engine provided with Laravel..Eloquent:リレーション6.0Laravelイントロダクションデータベーステーブルは大抵の場合、他と関連しています。
Eloquent: Relationships 6.0 Laravel Introduction Database tables are often related to one another.
結果: 36,
時間: 0.0161
English
中文
عربى
Български
বাংলা
Český
Dansk
Deutsch
Ελληνικά
Español
Suomi
Français
עִברִית
हिंदी
Hrvatski
Magyar
Bahasa indonesia
Italiano
Қазақ
한국어
മലയാളം
मराठी
Bahasa malay
Nederlands
Norsk
Polski
Português
Română
Русский
Slovenský
Slovenski
Српски
Svenska
தமிழ்
తెలుగు
ไทย
Tagalog
Turkce
Українська
اردو
Tiếng việt