feat:(laporan) tambah rekap harian so dan biaya internal dan external

This commit is contained in:
majid
2025-07-02 09:47:24 +07:00
parent 60dd90a9ed
commit 4ee42f38b9
8 changed files with 1151 additions and 52 deletions

View File

@@ -0,0 +1,23 @@
<?php
namespace Modules\Lpj\Http\Controllers;
use App\Http\Controllers\Controller;
use Illuminate\Http\Request;
class LaporanBiayaInternalExternalController extends Controller
{
/**
* Display a listing of the resource.
*/
public function showLaporanBiayaInternal()
{
return view('lpj::laporan-biaya.internal');
}
public function showLaporanBiayaExternal()
{
return view('lpj::laporan-biaya.external');
}
}