LARAVELは - 英語 への翻訳

日本語 での Laravelは の使用例とその 英語 への翻訳

{-}
  • Colloquial category close
  • Ecclesiastic category close
  • Computer category close
  • Programming category close
ユーザがCacheファサードのどのstaticメソッドを利用しようと、Laravelはサービスコンテナからcacheに結び付けられたインスタンスを依存解決し、要求されたメソッドを(この場合はget)そのオブジェクトに対し実行します。
When a user references any static method on the Cache facade, Laravel resolves the cache binding from the service container and runs the requested method(in this case, get) against that object.
オプションとしてレスポンスのテキストを指定することもできます。abort(403,'Unauthorizedaction.');カスタムHTTPエラーページ様々なHTTPステータスコードごとに、Laravelはカスタムエラーページを簡単に返せます。
Optionally, you may provide the response text: abort(403,'Unauthorized action.'); Custom HTTP Error Pages Laravel makes it easy to display custom error pages for various HTTP status codes.
通知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.
以前のリリースのLaravelは、phpartisanqueue:workコマンドは無制限にジョブを再試行していました。Laravel6.0からこのコマンドは、デフォルトで1回試行します。
In previous releases of Laravel, the php artisan queue: work command would retry jobs indefinitely. Beginning with Laravel 6.0, this command will now try a job one time by default.
メール送信に加え、LaravelはSMS(Nexmo使用)、Slackなどの、さまざまな複数チャンネルへ渡る通知をサポートしています。
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.
Laravelはいくつかの通知チャンネルを用意していますが、他のチャンネルを使用し通知を配信するために、独自のドライバーを書くこともあるでしょう。
Laravel ships with a handful of notification channels, but you may want to write your own drivers to deliver notifications via other channels.
インラインの埋め込みメールに画像をインラインで埋め込むことは典型的な厄介者です。しかしLaravelは画像をメールに付け、最適なCIDを得る便利な方法を提供しています。
Embedding Inline Attachments Embedding inline images into your e-mails is typically cumbersome; however, Laravel provides a convenient way to attach images to your e-mails and retrieving the appropriate CID.
LaravelはJavaScriptやCSSプリプロセッサの使用を規定してはいませんが、開発時点の元としてほとんどのアプリケーションで役立つだろうBootstrapとVueを提供しています。
While Laravel does not dictate which JavaScript or CSS pre-processors you use, it does provide a basic starting point using Bootstrap and Vue that will be helpful for many applications.
Laravelのデータベース設定ファイル中では、デフォルトの3306と5432ポートを使用することができます。Laravelは仮想マシンの内部で動作しているからです。
You will use the default 3306 and 5432 ports in your Laravel database configuration file since Laravel is running within the virtual machine.
Laravelは人気の高いSwiftMailerライブラリーにより、クリーンでシンプルなAPIを提供しています。SMTP、Mailgun、Postmark、AmazonSES、sendmailドライバーを提供しており、皆さんが選んだローカルやクラウドベースのサービスを使い、素早くメール送信が開始できるように用意しています。
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.
ユーザーがパスワードをリセットするためのリンクを必要とする場合、Laravelはpasswrod.reset名前付きルートに対するURLをrouteヘルパを利用し生成します。Laravel5.7使用時、明確な名前無しにrouteヘルパへトークンを渡してしました。
When a user requests a link to reset their password, Laravel generates the URL using the route helper to create a URL to the password. reset named route. When using Laravel 5.7, the token is passed to the route helper without an explicit name.
Laravelは初めから、単一ファイル(single)、日別ファイル(daily)、システムログ(syslog)、エラーログ(errorlog)ログモードをサポートしています。。しかし、アプリケーションに合わせるため、ログをカスタマイズしたいのでしたら、ConfigureLogging初期設定クラスを自由にオーバーライドできます。
Out of the box, Laravel supported single, daily, syslog and errorlog logging modes. However, you are free to customize the logging for your application as you wish by overriding the ConfigureLogging bootstrapper class.
Workbenchディレクトリーが存在すると、Laravelはパッケージを賢くスキャンし、アプリケーションがスタートした時点でComposerのオートロードファイルをロードします!もしパッケージのオートロードファイルを再生成する必要があるときは、phpartisandump-autoloadコマンドを使ってください。
When the workbench directory exists, Laravel will intelligently scan it for packages, loading their Composer autoload files when the application starts! If you need to regenerate your package's autoload files, you may use the php artisan dump-autoload command.
例を見てください。publicfunctiongetKeyName(){return'key';}このケースの場合、Laravelはカスタマイズを尊重するようになり、user_idの代わりにuser_key外部キーカラム名として利用します。
For example: public function getKeyName(){ return'key';} When this is the case, Laravel will now respect your customization and determine the foreign key column name is user_key instead of user_id.
この例の場合、ルート上で定義されているEloquentの$user変数と、ルートのURIの中の{User}セグメントが一致しているため、Laravelは、リクエストされたURIの対応する値に一致するIDを持つ、モデルインスタンスを自動的に注入します。
In this example, since the Eloquent$user variable defined on the route matches the{user} segment in the route's URI, Laravel will automatically inject the model instance that has an ID matching the corresponding value from the request URI.
User変数がApp\UserEloquentモデルとしてタイプヒントされており、変数名が{user}URIセグメントと一致しているため、Laravelは、リクエストされたURIの対応する値に一致するIDを持つ、モデルインスタンスを自動的に注入します。
Since the$user variable is type-hinted as the App\User Eloquent model and the variable name matches the{user} URI segment, Laravel will automatically inject the model instance that has an ID matching the corresponding value from the request URI.
この例では、Eloquentをタイプヒントしているルート上の$user変数が、ルートURIの{user}セグメントと名前が一致しているので、LaravelはリクエストURI上の対応するIDを持つ、モデルインスタンスを自動的に依存注入します。
In this example, since the Eloquent type-hinted$user variable defined on the route matches the{user} segment in the route's URI, Laravel will automatically inject the model instance that has an ID matching the corresponding value from the request URI.
ルートやコントローラでモデルインスタンスをタイプヒントし、空のモデルインスタンスが注入されることを期待している場合、タイプヒントを削除し、ルートかコントローラ内で直接空のモデルを生成してください。そうしなければ、LaravelはルートURIにあるIDを元にデータベースから既存のモデルインスタンスを取得しようとします。
If you were type-hinting a model instance in your route or controller and were expecting an empty model instance to be injected, you should remove this type-hint and create an empty model instance directly within your route or controller; otherwise, Laravel will attempt to retrieve an existing model instance from the database based on the identifier present in the route's URI.
LaravelはPHPのオープンソースです。
Laravel is a PHP open source frammework.
Laravelは自動的に判断します。
Laravel will determine this for you automatically.
結果: 1246, 時間: 0.02

トップ辞書のクエリ

日本語 - 英語