9 lines
197 B
PHP
9 lines
197 B
PHP
<?php
|
|
|
|
use App\Domains\Virtual\Services\ProductService;
|
|
|
|
require_once realpath(dirname(__FILE__) . '/TestCase.php');
|
|
|
|
$res = app(ProductService::class)->getCompanyProducts(1);
|
|
|
|
dd($res->toArray()); |