comment(Inspiring::quote()); })->purpose('Display an inspiring quote'); /* |-------------------------------------------------------------------------- | KPI Data Refresh Schedule |-------------------------------------------------------------------------- | | Refresh KPI data from Google Sheets daily at 6:00 AM (Taipei timezone). | This ensures the data is fresh when users visit the site during work hours. | */ Schedule::command('kpi:refresh') ->dailyAt('06:00') ->timezone('Asia/Taipei') ->withoutOverlapping() ->onOneServer() ->appendOutputTo(storage_path('logs/kpi-refresh.log'));