vd/tests/StatsTest.php
2018-12-29 10:19:35 +08:00

11 lines
241 B
PHP

<?php
use Dipper\Excel\Facades\Excel;
use App\Domains\Stats\Exports\CompanyCountExport;
require_once realpath(dirname(__FILE__) . '/TestCase.php');
$res = Excel::queue(new CompanyCountExport($conditions), '企业统计.xlsx');
dd($res);