This commit is contained in:
Jaybe
2025-03-05 14:02:29 +09:00
commit 247a7808d3
357 changed files with 161196 additions and 0 deletions
@@ -0,0 +1,18 @@
<?php
namespace App\Controllers\Accounting;
use App\Controllers\BaseController;
class TaxController extends BaseController
{
public function tax()
{
return view('accounting/tax/tax');
}
public function taxList()
{
return view('accounting/tax/tax_list');
}
}