You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: original-en/context.md
+10
Original file line number
Diff line number
Diff line change
@@ -136,6 +136,16 @@ Context::get('key');
136
136
// "first"
137
137
```
138
138
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:
Copy file name to clipboardexpand all lines: original-en/logging.md
+3-3
Original file line number
Diff line number
Diff line change
@@ -416,13 +416,13 @@ class CustomizeFormatter
416
416
417
417
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.
418
418
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:
Copy file name to clipboardexpand all lines: original-en/pagination.md
+9-12
Original file line number
Diff line number
Diff line change
@@ -22,18 +22,15 @@ In other frameworks, pagination can be very painful. We hope Laravel's approach
22
22
23
23
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.
24
24
25
-
<aname="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:
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:
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:
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.
The `Str::wordWrap` method wraps a string to a given number of characters:
1718
1718
1719
1719
```php
1720
-
1721
-
``````php
1722
1720
use Illuminate\Support\Str;
1723
1721
1724
1722
$text = "The quick brown fox jumped over the lazy dog."
@@ -1738,8 +1736,6 @@ dog.
1738
1736
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:
1739
1737
1740
1738
```php
1741
-
1742
-
``````php
1743
1739
use Illuminate\Support\Str;
1744
1740
1745
1741
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, ' >>>');
1753
1749
The `Str::wrap` method wraps the given string with an additional string or pair of strings:
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) {}
Copy file name to clipboardexpand all lines: original-en/vite.md
+7-10
Original file line number
Diff line number
Diff line change
@@ -445,19 +445,16 @@ The following example demonstrates how Vite will treat relative and absolute URL
445
445
<a name="working-with-stylesheets"></a>
446
446
## Working With Stylesheets
447
447
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).
449
450
450
-
```js
451
-
exportdefault {
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
457
455
```
458
456
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.
0 commit comments