英語 での Laravel introduction の使用例とその 日本語 への翻訳
{-}
-
Colloquial
-
Ecclesiastic
-
Computer
-
Programming
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.
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.
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.
Queues 5.2 Laravel Introduction The Laravel queue service provides a unified API across a variety of different queue back-ends.
Application Structure 5.2 Laravel Introduction The default Laravel application structure is intended to provide a great starting point for both large and small applications.
Database: Getting Started 5.2 Laravel Introduction Laravel makes connecting with databases and running queries extremely simple across a variety of database back-ends using either raw SQL, the fluent query builder, and the Eloquent ORM.
HTTP Tests 6.0 Laravel Introduction Laravel provides a very fluent API for making HTTP requests to your application and examining the output.
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.
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.
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 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 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.
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.
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.
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 Session 6.0 Laravel Introduction Since HTTP driven applications are stateless, sessions provide a way to store information about the user across multiple requests.
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.
Authorization 5.3 Laravel Introduction In addition to providing authentication services out of the box, Laravel also provides a simple way to authorize user actions against a given resource.
URL Generation 5.6 Laravel Introduction Laravel provides several helpers to assist you in generating URLs for your application.
Artisan Console 6.0 Laravel Introduction Artisan is the command-line interface included with Laravel. .