1
0
cms11/routes/console.php

8 lines
203 B
PHP
Raw Normal View History

2024-04-16 15:55:47 +02:00
<?php
2024-04-21 11:09:37 +02:00
use Illuminate\Support\Facades\Schedule;
2024-04-16 15:55:47 +02:00
2024-04-21 11:09:37 +02:00
Schedule::command('telescope:prune')->daily();
2024-05-12 00:07:04 +02:00
Schedule::command('url:update')->daily();
Schedule::command('url:update', ['--clean' => true])->monthly();