8 أسطر
178 B
PHP
8 أسطر
178 B
PHP
<?php
|
|
|
|
use Illuminate\Support\Facades\Schedule;
|
|
|
|
Schedule::command('currency:fetch --today')
|
|
->everySixHours()
|
|
->appendOutputTo(storage_path('logs/currency-fetch.log'));
|