diff --git a/app/Events/NotifikasiAnggota.php b/app/Events/NotifikasiAnggota.php index c08a055..64a1f25 100644 --- a/app/Events/NotifikasiAnggota.php +++ b/app/Events/NotifikasiAnggota.php @@ -13,11 +13,10 @@ class NotifikasiAnggota implements ShouldBroadcast public $nokp; public $status; // DILULUSKAN atau DITOLAK - public $siri; public $komen; public $tagoperasi; - public function __construct($nokp, $status, $siri, $komen, $tagoperasi = null) + public function __construct($nokp, $status, $komen, $tagoperasi = null) { $this->nokp = $nokp; $this->status = strtoupper($status); // pastikan huruf besar DILULUSKAN/DITOLAK diff --git a/resources/views/customers/v2/info.blade.php b/resources/views/customers/v2/info.blade.php index 88e4680..beded8f 100644 --- a/resources/views/customers/v2/info.blade.php +++ b/resources/views/customers/v2/info.blade.php @@ -3421,6 +3421,7 @@ Swal.fire({ icon: 'success', title: 'Diluluskan oleh Operasi', + text: `Komen: No Anggota ${data.komen}`, confirmButtonText: 'OK' }).then(() => location.reload()); } else if (data.status === 'DITOLAK') {