refactor: update laporan user service and views for simplified report style: improve daftar pustaka views and remove unused code fix: correct date field names in laporan sla penilai service
22 lines
326 B
PHP
22 lines
326 B
PHP
<?php
|
|
|
|
namespace Modules\Lpj\Services;
|
|
use Illuminate\Http\Request;
|
|
use Modules\Lpj\Models\Permohonan;
|
|
|
|
class LaporanBiayaService
|
|
{
|
|
public function buildDataTableQuery(array $data){
|
|
$query = Permohonan::with([
|
|
'noc'
|
|
]);
|
|
|
|
if($data['search']){
|
|
|
|
}
|
|
|
|
|
|
return $query;
|
|
}
|
|
}
|