From 7c12bff677c05710038768888da63f655a301f9f Mon Sep 17 00:00:00 2001 From: Linus Metzler Date: Sun, 30 Jul 2023 09:41:00 +0200 Subject: [PATCH] fix anchor in link to Laravel docs --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index f55bcd5..e7b445a 100644 --- a/README.md +++ b/README.md @@ -118,7 +118,7 @@ return [ The schedule monitor will log each start, finish and failure of all scheduled jobs. After a while the `monitored_scheduled_task_log_items` might become big. -Use [Laravel's model pruning feature](https://laravel.com/docs/9.x/eloquent#mass-assignment) , you can delete old `MonitoredScheduledTaskLogItem` models. Models older than the amount of days configured in the `delete_log_items_older_than_days` in the `schedule-monitor` config file, will be deleted. +Use [Laravel's model pruning feature](https://laravel.com/docs/9.x/eloquent#pruning-models) , you can delete old `MonitoredScheduledTaskLogItem` models. Models older than the amount of days configured in the `delete_log_items_older_than_days` in the `schedule-monitor` config file, will be deleted. ```php // app/Console/Kernel.php