vd/tests/StatTest.php
2018-12-26 18:04:37 +08:00

12 lines
221 B
PHP

<?php
use App\Domains\Virtual\Services\StatService;
require_once realpath(dirname(__FILE__) . '/TestCase.php');
$service = app(StatService::class);
$res = $service->companyIndex(['limit' => 0]);
dd($res->toArray());