| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- <?php
- namespace App\Http\Controllers;
- use App\Interfaces\SettlementBillControllerInterface;
- use App\Services\OwnerBillReportArchiveService;
- use App\Services\OwnerWaybillSettlementBillService;
- use App\Traits\SettlementBillTrait;
- use Illuminate\Http\Request;
- class SettlementBillLogisticFeeController extends Controller implements SettlementBillControllerInterface
- {
- use SettlementBillTrait;
- /**
- * @var $service OwnerWaybillSettlementBillService
- */
- private $service;
- /**
- * @var $archiveService OwnerBillReportArchiveService
- */
- private $archiveService;
- //
- /**
- * SettlementBillLogisticFeeController constructor.
- */
- public function __construct()
- {
- $this->service = app('OwnerWaybillSettlementBillService');
- $this->service = app('OwnerBillReportArchiveService');
- }
- public function index(Request $request)
- {
- // TODO: Implement index() method.
- }
- public function confirmBill(Request $request): \Illuminate\Http\RedirectResponse
- {
- // TODO: Implement confirmBill() method.
- }
- public function export(Request $request)
- {
- // TODO: Implement export() method.
- }
- }
|