12 lines
221 B
PHP
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());
|