From 7ab199ea62da84a18f8952388c4525b6ad15676d Mon Sep 17 00:00:00 2001 From: Arya Dwi Putra Date: Tue, 2 Dec 2025 19:06:47 +0700 Subject: [PATCH] Improve integration UX in setup wizard --- resources/views/setup/wizard.blade.php | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/resources/views/setup/wizard.blade.php b/resources/views/setup/wizard.blade.php index 5a24d52..29dbeef 100644 --- a/resources/views/setup/wizard.blade.php +++ b/resources/views/setup/wizard.blade.php @@ -82,6 +82,17 @@ $bodyClass = 'bg-white'; @foreach($settings->groupBy('group') as $group => $items)
{{ ucfirst($group) }}
+ @if($group === 'integration') +
+
Panduan cepat integrasi
+
    +
  • Gunakan header X-Api-Key untuk REST API: {{ url('/api/v1') }}
  • +
  • Webhook event: movement/disposal/audit/maintenance & perubahan aset
  • +
  • Aktifkan webhook dan isi secret untuk signature HMAC di header X-Webhook-Signature
  • +
+
Contoh: curl -H "X-Api-Key: YOUR_KEY" "{{ url('/api/v1/assets') }}" | Dokumentasi API bisa ditambahkan di halaman help/changelog.
+
+ @endif
@foreach($items as $setting) @php