英語 での Laravel introduction の使用例とその 日本語 への翻訳
{-}
-
Colloquial
-
Ecclesiastic
-
Computer
-
Programming
Eloquent: Relationships 6.0 Laravel Introduction Database tables are often related to one another.
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.
Eloquent: Relationships 5.1 Laravel Introduction Database tables are often related to one another.
Blade Templates 6.0 Laravel Introduction Blade is the simple, yet powerful templating engine provided with Laravel. .
Artisan Console 6.0 Laravel Introduction Artisan is the command-line interface included with Laravel. .
Artisan CLI 4.2 Laravel Introduction Artisan is the name of the command-line interface included with Laravel. .
Artisan CLI 5.0 Laravel Introduction Artisan is the name of the command-line interface included with Laravel. .
URL Generation 5.6 Laravel Introduction Laravel provides several helpers to assist you in generating URLs for your application.
Task Scheduling 5.3 Laravel Introduction In the past, you may have generated a Cron entry for each task you needed to schedule on your server.
Request Lifecycle 6.0 Laravel Introduction When using any tool in the"real world", you feel more confident if you understand how that tool works.
Request Lifecycle 5.0 Laravel Introduction When using any tool in the"real world", you feel more confident if you understand how that tool works.
HTTP Middleware 5.1 Laravel Introduction HTTP middleware provide a convenient mechanism for filtering HTTP requests entering your application.
Artisan Development 4.2 Laravel Introduction In addition to the commands provided with Artisan, you may also build your own custom commands for working with your application.
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.
Envoy Task Runner 5.6 Laravel Introduction Laravel Envoy provides a clean, minimal syntax for defining common tasks you run on your remote servers.
Envoy Task Runner 5.3 Laravel Introduction Laravel Envoy provides a clean, minimal syntax for defining common tasks you run on your remote servers.
Envoy Task Runner 5.1 Laravel Introduction Laravel Envoy provides a clean, minimal syntax for defining common tasks you run on your remote servers.
HTTP Session 5.3 Laravel Introduction Since HTTP driven applications are stateless, sessions provide a way to store information about the user across multiple requests.
Envoy Task Runner 5.0 Laravel Introduction Laravel Envoy provides a clean, minimal syntax for defining common tasks you run on your remote servers.
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.
Controllers 5.4 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.
Authorization 6.0 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.
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.
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.
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.
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.
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.