1. Go to this page and download the library: Download hireatlas/super-funds library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
use App\Models\SuperFund as CustomSuperFundModel;
use Atlas\SuperFunds\SuperFunds;
public function boot() {
SuperFunds::useModel(CustomSuperFundModel::class);
}
use Atlas\SuperFunds\SuperFunds;
public function boot() {
SuperFunds::ignoreMigrations();
}
use Atlas\SuperFunds\Jobs\UpdateSuperFunds;
$schedule->command('super-funds:update')->dailyAt('01:23');
// OR
$schedule->job(new UpdateSuperFunds)->dailyAt('01:23');
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.