-
Notifications
You must be signed in to change notification settings - Fork 58
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Task Scheduling Readme Update #37
base: master
Are you sure you want to change the base?
Conversation
Task scheduling in laravel 11
@@ -135,6 +135,16 @@ protected function schedule(Schedule $schedule) | |||
$schedule->command('otp:clean')->daily(); | |||
} | |||
``` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
leave a newline
README.md
Outdated
@@ -135,6 +135,16 @@ protected function schedule(Schedule $schedule) | |||
$schedule->command('otp:clean')->daily(); | |||
} | |||
``` | |||
In laravel 11 the `app/Console/Kernel.php` was removed, to schedule a task, add this to the `routes/console.php` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
leave a newline before the code sample
README.md
Outdated
|
||
Schedule::command('otp:clean')->daily(); | ||
``` | ||
check if your task has been added to schedule using command: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
leave a newline after the code sample
README.md
Outdated
Schedule::command('otp:clean')->daily(); | ||
``` | ||
check if your task has been added to schedule using command: | ||
`php artisan schedule:list` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
php artisan schedule:list
should be a code sample with bash
as opposed to php artisan schedule:list
leave a new line before and after its declaration
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
dropped a few comments
Added requested changes to the readme 👍
@@ -136,6 +136,21 @@ protected function schedule(Schedule $schedule) | |||
} | |||
``` | |||
|
|||
In Laravel 11, the `app/Console/Kernel.php` file has been removed. To schedule a task, you can now add it directly to `routes/console.php` as follows: | |||
```php |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
leave a newline
``` | ||
|
||
You can check if your task has been added to the schedule by using the following artisan command: | ||
```bash |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
leave a newline
php artisan schedule:list | ||
``` | ||
|
||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
remove excess newline
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
more updates required
Bumping this up |
Task scheduling in laravel 11