Co-authored-by: Colby McHenry <colbymchenry@users.noreply.github.com>
This commit is contained in:
co-authored by
Colby McHenry
parent
a961491cea
commit
040ba388da
+9
@@ -0,0 +1,9 @@
|
||||
<?php
|
||||
namespace App\Http\Controllers\Backend;
|
||||
use App\Services\SettleService as Settle;
|
||||
|
||||
class SettleController extends Controller {
|
||||
public function excel($stores, $startDay = null, $endDay = null, $id = null) {
|
||||
return Settle::getSettlesToExcel($stores, request()->_SELECTED, [$startDay, $endDay], $id);
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
<?php
|
||||
namespace App\Repositories;
|
||||
|
||||
class SettleRepository {
|
||||
public static function getSettlesToExcel($storeIds, $dayRange) {
|
||||
return [];
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
<?php
|
||||
namespace App\Services;
|
||||
|
||||
class SettleService {
|
||||
public static function getSettlesToExcel($stores, $selected, $dayRange, $id) {
|
||||
return [];
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user