Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
xxl4 committed Dec 13, 2024
1 parent b720bbc commit 9aafe9e
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,18 @@

namespace NexaMerchant\Apis\Http\Controllers\Api\V1\Admin\Reporting;

use Webkul\Admin\Helpers\Reporting;
use Nicelizhi\Manage\Helpers\Reporting;

class CustomerController extends ReportingController
{
public $reportingHelper;

public function __construct()
{
//parent::__construct();

$this->reportingHelper = app(Reporting::class);
}
/**
* Request param functions.
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,18 @@

namespace NexaMerchant\Apis\Http\Controllers\Api\V1\Admin\Reporting;

use Webkul\Admin\Helpers\Reporting;
use Nicelizhi\Manage\Helpers\Reporting;

class ProductController extends ReportingController
{
public $reportingHelper;

public function __construct()
{
//parent::__construct();

$this->reportingHelper = app(Reporting::class);
}
/**
* Request param functions.
*
Expand Down
10 changes: 9 additions & 1 deletion src/Http/Controllers/Api/V1/Admin/Reporting/SaleController.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,18 @@

namespace NexaMerchant\Apis\Http\Controllers\Api\V1\Admin\Reporting;

use Webkul\Admin\Helpers\Reporting;
use Nicelizhi\Manage\Helpers\Reporting;

class SaleController extends ReportingController
{
public $reportingHelper;

public function __construct()
{
//parent::__construct();

$this->reportingHelper = app(Reporting::class);
}
/**
* Request param functions.
*
Expand Down

0 comments on commit 9aafe9e

Please sign in to comment.