Skip to content

Commit 8ce9ed8

Browse files
committed
2025-03-17までの原文変更点反映。
1 parent c4b9c80 commit 8ce9ed8

22 files changed

+197
-81
lines changed

original-en/blade.md

+12
Original file line numberDiff line numberDiff line change
@@ -1156,6 +1156,18 @@ You may retrieve a specific attribute's value using the `get` method:
11561156
{{ $attributes->get('class') }}
11571157
```
11581158

1159+
The `only` method may be used to retrieve only the attributes with the given keys:
1160+
1161+
```blade
1162+
{{ $attributes->only(['class']) }}
1163+
```
1164+
1165+
The `except` method may be used to retrieve all attributes except those with the given keys:
1166+
1167+
```blade
1168+
{{ $attributes->except(['class']) }}
1169+
```
1170+
11591171
<a name="reserved-keywords"></a>
11601172
### Reserved Keywords
11611173

original-en/context.md

+10
Original file line numberDiff line numberDiff line change
@@ -136,6 +136,16 @@ Context::get('key');
136136
// "first"
137137
```
138138

139+
Context also provides convenient methods for incrementing or decrementing a given key. Both of these methods accept at least one argument: the key to track. A second argument may be provided to specify the amount by which the key should be incremented or decremented:
140+
141+
```php
142+
Context::increment('records_added');
143+
Context::increment('records_added', 5);
144+
145+
Context::decrement('records_added');
146+
Context::decrement('records_added', 5);
147+
```
148+
139149
<a name="conditional-context"></a>
140150
#### Conditional Context
141151

original-en/eloquent-relationships.md

+9
Original file line numberDiff line numberDiff line change
@@ -468,6 +468,15 @@ public function largestOrder(): HasOne
468468
}
469469
```
470470

471+
You may also use the `one` method to convert `HasManyThrough` relationships to `HasOneThrough` relationships:
472+
473+
```php
474+
public function latestDeployment(): HasOneThrough
475+
{
476+
return $this->deployments()->one()->latestOfMany();
477+
}
478+
```
479+
471480
<a name="advanced-has-one-of-many-relationships"></a>
472481
#### Advanced Has One of Many Relationships
473482

original-en/errors.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -310,7 +310,7 @@ class InvalidOrderException extends Exception
310310
}
311311

312312
/**
313-
* Render the exception into an HTTP response.
313+
* Render the exception as an HTTP response.
314314
*/
315315
public function render(Request $request): Response
316316
{
@@ -323,7 +323,7 @@ If your exception extends an exception that is already renderable, such as a bui
323323

324324
```php
325325
/**
326-
* Render the exception into an HTTP response.
326+
* Render the exception as an HTTP response.
327327
*/
328328
public function render(Request $request): Response|bool
329329
{

original-en/logging.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -416,13 +416,13 @@ class CustomizeFormatter
416416

417417
Monolog has a variety of [available handlers](https://github.com/Seldaek/monolog/tree/main/src/Monolog/Handler) and Laravel does not include a built-in channel for each one. In some cases, you may wish to create a custom channel that is merely an instance of a specific Monolog handler that does not have a corresponding Laravel log driver. These channels can be easily created using the `monolog` driver.
418418

419-
When using the `monolog` driver, the `handler` configuration option is used to specify which handler will be instantiated. Optionally, any constructor parameters the handler needs may be specified using the `with` configuration option:
419+
When using the `monolog` driver, the `handler` configuration option is used to specify which handler will be instantiated. Optionally, any constructor parameters the handler needs may be specified using the `handler_with` configuration option:
420420

421421
```php
422422
'logentries' => [
423423
'driver' => 'monolog',
424424
'handler' => Monolog\Handler\SyslogUdpHandler::class,
425-
'with' => [
425+
'handler_with' => [
426426
'host' => 'my.logentries.internal.datahubhost.company.com',
427427
'port' => '10000',
428428
],
@@ -466,7 +466,7 @@ If you would like to customize the processors for a `monolog` driver, add a `pro
466466
'memory' => [
467467
'driver' => 'monolog',
468468
'handler' => Monolog\Handler\StreamHandler::class,
469-
'with' => [
469+
'handler_with' => [
470470
'stream' => 'php://stderr',
471471
],
472472
'processors' => [

original-en/pagination.md

+9-12
Original file line numberDiff line numberDiff line change
@@ -22,18 +22,15 @@ In other frameworks, pagination can be very painful. We hope Laravel's approach
2222

2323
By default, the HTML generated by the paginator is compatible with the [Tailwind CSS framework](https://tailwindcss.com/); however, Bootstrap pagination support is also available.
2424

25-
<a name="tailwind-jit"></a>
26-
#### Tailwind JIT
27-
28-
If you are using Laravel's default Tailwind pagination views and the Tailwind JIT engine, you should ensure your application's `tailwind.config.js` file's `content` key references Laravel's pagination views so that their Tailwind classes are not purged:
29-
30-
```js
31-
content: [
32-
'./resources/**/*.blade.php',
33-
'./resources/**/*.js',
34-
'./resources/**/*.vue',
35-
'./vendor/laravel/framework/src/Illuminate/Pagination/resources/views/*.blade.php',
36-
],
25+
<a name="tailwind"></a>
26+
#### Tailwind
27+
28+
If you are using Laravel's default Tailwind pagination views with Tailwind 4.x, your application's `resources/css/app.css` file will already be properly configured to `@source` Laravel's pagination views:
29+
30+
```css
31+
@import 'tailwindcss';
32+
33+
@source '../../vendor/laravel/framework/src/Illuminate/Pagination/resources/views/*.blade.php';
3734
```
3835

3936
<a name="basic-usage"></a>

original-en/processes.md

+18
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
- [Asynchronous Processes](#asynchronous-processes)
99
- [Process IDs and Signals](#process-ids-and-signals)
1010
- [Asynchronous Process Output](#asynchronous-process-output)
11+
- [Asynchronous Process Timeouts](#asynchronous-process-timeouts)
1112
- [Concurrent Processes](#concurrent-processes)
1213
- [Naming Pool Processes](#naming-pool-processes)
1314
- [Pool Process IDs and Signals](#pool-process-ids-and-signals)
@@ -301,6 +302,23 @@ $process->waitUntil(function (string $type, string $output) {
301302
});
302303
```
303304

305+
<a name="asynchronous-process-timeouts"></a>
306+
### Asynchronous Process Timeouts
307+
308+
While an asynchronous process is running, you may verify that the process has not timed out using the `ensureNotTimedOut` method. This method will throw a [timeout exception](#timeouts) if the process has timed out:
309+
310+
```php
311+
$process = Process::timeout(120)->start('bash import.sh');
312+
313+
while ($process->running()) {
314+
$process->ensureNotTimedOut();
315+
316+
// ...
317+
318+
sleep(1);
319+
}
320+
```
321+
304322
<a name="concurrent-processes"></a>
305323
## Concurrent Processes
306324

original-en/starter-kits.md

+1
Original file line numberDiff line numberDiff line change
@@ -386,3 +386,4 @@ php artisan vendor:publish --tag=laravel-mail
386386
```
387387

388388
This will generate several files in `resources/views/vendor/mail`. You can modify any of these files as well as the `resources/views/vendor/mail/themes/default.css` file to change the look and appearance of the default email template.
389+

original-en/strings.md

+2-14
Original file line numberDiff line numberDiff line change
@@ -1717,8 +1717,6 @@ Str::wordCount('Hello, world!'); // 2
17171717
The `Str::wordWrap` method wraps a string to a given number of characters:
17181718

17191719
```php
1720-
1721-
``````php
17221720
use Illuminate\Support\Str;
17231721

17241722
$text = "The quick brown fox jumped over the lazy dog."
@@ -1738,8 +1736,6 @@ dog.
17381736
The `Str::words` method limits the number of words in a string. An additional string may be passed to this method via its third argument to specify which string should be appended to the end of the truncated string:
17391737

17401738
```php
1741-
1742-
``````php
17431739
use Illuminate\Support\Str;
17441740

17451741
return Str::words('Perfectly balanced, as all things should be.', 3, ' >>>');
@@ -1753,8 +1749,6 @@ return Str::words('Perfectly balanced, as all things should be.', 3, ' >>>');
17531749
The `Str::wrap` method wraps the given string with an additional string or pair of strings:
17541750

17551751
```php
1756-
1757-
``````php
17581752
use Illuminate\Support\Str;
17591753

17601754
Str::wrap('Laravel', '"');
@@ -1772,8 +1766,6 @@ Str::wrap('is', before: 'This ', after: ' Laravel!');
17721766
The `str` function returns a new `Illuminate\Support\Stringable` instance of the given string. This function is equivalent to the `Str::of` method:
17731767

17741768
```php
1775-
1776-
``````php
17771769
$string = str('Taylor')->append(' Otwell');
17781770

17791771
// 'Taylor Otwell'
@@ -1782,8 +1774,6 @@ $string = str('Taylor')->append(' Otwell');
17821774
If no argument is provided to the `str` function, the function returns an instance of `Illuminate\Support\Str`:
17831775

17841776
```php
1785-
1786-
``````php
17871777
$snake = str()->snake('FooBar');
17881778

17891779
// 'foo_bar'
@@ -1795,8 +1785,6 @@ $snake = str()->snake('FooBar');
17951785
The `trans` function translates the given translation key using your [language files](/docs/{{version}}/localization):
17961786

17971787
```php
1798-
1799-
``````php
18001788
echo trans('messages.welcome');
18011789
```
18021790

@@ -3405,8 +3393,8 @@ The `whenEmpty` method invokes the given closure if the string is empty. If the
34053393
use Illuminate\Support\Str;
34063394
use Illuminate\Support\Stringable;
34073395

3408-
$string = Str::of(' ')->whenEmpty(function (Stringable $string) {
3409-
return $string->trim()->prepend('Laravel');
3396+
$string = Str::of(' ')->trim()->whenEmpty(function (Stringable $string) {
3397+
return $string->prepend('Laravel');
34103398
});
34113399

34123400
// 'Laravel'

original-en/upgrade.md

+26
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@
2828

2929
- [Carbon 3](#carbon-3)
3030
- [Concurrency Result Index Mapping](#concurrency-result-index-mapping)
31+
- [Container Class Dependency Resolution](#container-class-dependency-resolution)
3132
- [Image Validation Now Excludes SVGs](#image-validation)
3233
- [Multi-Schema Database Inspecting](#multi-schema-database-inspecting)
3334
- [Nested Array Request Merging](#nested-array-request-merging)
@@ -109,6 +110,31 @@ $result = Concurrency::run([
109110
// ['task-1' => 2, 'task-2' => 4]
110111
```
111112

113+
<a name="container"></a>
114+
### Container
115+
116+
<a name="container-class-dependency-resolution"></a>
117+
#### Container Class Dependency Resolution
118+
119+
**Likelihood Of Impact: Low**
120+
121+
The dependency injection container now respects the default value of class properties when resolving a class instance. If you were previously relying on the container to resolve a class instance without the default value, you may need to adjust your application to account for this new behavior:
122+
123+
```php
124+
class Example
125+
{
126+
public function __construct(public ?Carbon $date = null) {}
127+
}
128+
129+
$example = resolve(Example::class);
130+
131+
// <= 11.x
132+
$example->date instanceof Carbon;
133+
134+
// >= 12.x
135+
$example->date === null;
136+
```
137+
112138
<a name="database"></a>
113139
### Database
114140

original-en/vite.md

+7-10
Original file line numberDiff line numberDiff line change
@@ -445,19 +445,16 @@ The following example demonstrates how Vite will treat relative and absolute URL
445445
<a name="working-with-stylesheets"></a>
446446
## Working With Stylesheets
447447
448-
You can learn more about Vite's CSS support within the [Vite documentation](https://vitejs.dev/guide/features.html#css). If you are using PostCSS plugins such as [Tailwind](https://tailwindcss.com), you may create a `postcss.config.js` file in the root of your project and Vite will automatically apply it:
448+
> [!NOTE]
449+
> Laravel's [starter kits](/docs/{{version}}/starter-kits) already include the proper Tailwind and Vite configuration. Or, if you would like to use Tailwind and Laravel without using one of our starter kits, check out [Tailwind's installation guide for Laravel](https://tailwindcss.com/docs/guides/laravel).
449450
450-
```js
451-
export default {
452-
plugins: {
453-
tailwindcss: {},
454-
autoprefixer: {},
455-
},
456-
};
451+
All Laravel applications already include Tailwind and a properly configured `vite.config.js` file. So, you only need to start the Vite development server or run the `dev` Composer command, which will start both the Laravel and Vite development servers:
452+
453+
```shell
454+
composer run dev
457455
```
458456
459-
> [!NOTE]
460-
> Laravel's [starter kits](/docs/{{version}}/starter-kits) already include the proper Tailwind, PostCSS, and Vite configuration. Or, if you would like to use Tailwind and Laravel without using one of our starter kits, check out [Tailwind's installation guide for Laravel](https://tailwindcss.com/docs/guides/laravel).
457+
Your application's CSS may be placed within the `resources/css/app.css` file.
461458
462459
<a name="working-with-blade-and-routes"></a>
463460
## Working With Blade and Routes

translation-ja/blade.md

+12
Original file line numberDiff line numberDiff line change
@@ -1156,6 +1156,18 @@ class Alert extends Component
11561156
{{ $attributes->get('class') }}
11571157
```
11581158

1159+
`only`メソッドは、指定キーの属性だけを取得するために使用します。
1160+
1161+
```blade
1162+
{{ $attributes->only(['class']) }}
1163+
```
1164+
1165+
`except`メソッドは、指定キーの属性以外のすべての属性を取得するために使用します。
1166+
1167+
```blade
1168+
{{ $attributes->except(['class']) }}
1169+
```
1170+
11591171
<a name="reserved-keywords"></a>
11601172
### 予約語
11611173

translation-ja/context.md

+10
Original file line numberDiff line numberDiff line change
@@ -136,6 +136,16 @@ Context::get('key');
136136
// "first"
137137
```
138138

139+
Contextはまた、指定キーを増分または減分する便利なメソッドも提供しています。どちらのメソッドも最低1つの引数を受け取ります。2番目の引数で、キーの増分量や減分量を指定します。
140+
141+
```php
142+
Context::increment('records_added');
143+
Context::increment('records_added', 5);
144+
145+
Context::decrement('records_added');
146+
Context::decrement('records_added', 5);
147+
```
148+
139149
<a name="conditional-context"></a>
140150
#### 条件付きコンテキスト
141151

translation-ja/eloquent-relationships.md

+9
Original file line numberDiff line numberDiff line change
@@ -468,6 +468,15 @@ public function largestOrder(): HasOne
468468
}
469469
```
470470

471+
`one`メソッドを使い、`HasManyThrough`リレーションを`HasOneThrough`リレーションへ変換することもできます。
472+
473+
```php
474+
public function latestDeployment(): HasOneThrough
475+
{
476+
return $this->deployments()->one()->latestOfMany();
477+
}
478+
```
479+
471480
<a name="advanced-has-one-of-many-relationships"></a>
472481
#### 上級Has One Of Manyリレーション
473482

translation-ja/errors.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -323,7 +323,7 @@ LaravelやSymfonyの組み込み済み例外など、既存のレンダ可能(
323323

324324
```php
325325
/**
326-
* Render the exception into an HTTP response.
326+
* 例外をHTTPレスポンスへレンダする
327327
*/
328328
public function render(Request $request): Response|bool
329329
{

translation-ja/logging.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -416,13 +416,13 @@ class CustomizeFormatter
416416

417417
Monologにはさまざまな[利用可能なハンドラ](https://github.com/Seldaek/monolog/tree/main/src/Monolog/Handler)があり、Laravelはそれぞれに対する組み込みチャンネルを用意していません。場合によっては、対応するLaravelログドライバを持たない特定のMonologハンドラの単なるインスタンスであるカスタムチャンネルを作成したい場合があります。これらのチャンネルは、`monolog`ドライバを使用して簡単に作成できます。
418418

419-
`monolog`ドライバを使用する場合、`handler`設定オプションを使用してインスタンス化するハンドラを指定します。オプションで、ハンドラが必要とするコンストラクターパラメータは、`with`設定オプションを使用して指定できます
419+
`monolog`ドライバを使用する場合、`handler`設定オプションを使用してインスタンス化するハンドラを指定します。オプションで、ハンドラが必要とするコンストラクターパラメータは、`handler_with`設定オプションを使用して指定します
420420

421421
```php
422422
'logentries' => [
423423
'driver' => 'monolog',
424424
'handler' => Monolog\Handler\SyslogUdpHandler::class,
425-
'with' => [
425+
'handler_with' => [
426426
'host' => 'my.logentries.internal.datahubhost.company.com',
427427
'port' => '10000',
428428
],
@@ -466,7 +466,7 @@ Monologは、メッセージをログに記録する前に処理することも
466466
'memory' => [
467467
'driver' => 'monolog',
468468
'handler' => Monolog\Handler\StreamHandler::class,
469-
'with' => [
469+
'handler_with' => [
470470
'stream' => 'php://stderr',
471471
],
472472
'processors' => [

0 commit comments

Comments
 (0)