This commit is contained in:
Dwi Swandhana
2026-03-05 12:07:34 +07:00
parent f1a5e63800
commit 934c90c412
3 changed files with 60 additions and 21 deletions

No files matched your search

@@ -41,9 +41,15 @@
<td>{{ $r['status'] }}</td>
<td>{{ $r['tgldraft'] }}</td>
<td>
@php
$petugas = App\Models\User::where('id', $r['excutor'])->first();
echo $petugas ? $petugas->nama : '';
@php
$petugas = '';
if ($r['nmppdsmiddle2'] != '') {
$petugas = $r['nmppdsmiddle2'];
}
if ($r['nmppdsjunior2'] != '') {
$petugas = $petugas.' '.$r['nmppdsjunior2'];
}
echo $petugas;
@endphp
</td>
</tr>