File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -87,13 +87,13 @@ Add the service provider in ``config/app.php``:
87
87
Job Batching
88
88
------------
89
89
90
- `Laravel's job batching https://laravel.com/docs/{+laravel-docs-version+}/queues#job-batching>`__
91
- feature allows you to easily execute a batch of jobs and then perform some action
92
- when the batch of jobs has completed executing .
90
+ `Job batching https://laravel.com/docs/{+laravel-docs-version+}/queues#job-batching>`__
91
+ is a Laravel feature to execute batch of jobs and subsequent actions before,
92
+ after and during the execution of the jobs from the queue .
93
93
94
94
With MongoDB, you don't have to create any collection before using this feature.
95
95
The collection ``job_batches`` will be created automatically to store meta
96
- information about your job batches, such as their completion percentage
96
+ information about your job batches, such as their completion percentage.
97
97
98
98
.. code-block:: php
99
99
You can’t perform that action at this time.
0 commit comments