@extends('layouts.app') @section('content') @if(session('success'))
{{ session('success') }}
@endif @php // aman kalau key settings kosong + bikin URL logo konsisten $logoFull = $settings['shop_logo'] ?? null; if ($logoFull && !\Illuminate\Support\Str::startsWith($logoFull, ['http://', 'https://'])) { $logoFull = asset($logoFull); } $logoIcon = $settings['shop_logo_icon'] ?? null; if ($logoIcon && !\Illuminate\Support\Str::startsWith($logoIcon, ['http://', 'https://'])) { $logoIcon = asset($logoIcon); } @endphp
@csrf

Pengaturan Toko

Informasi utama toko untuk struk & faktur

{{-- Logo Upload Section --}}
{{-- Logo Full --}}

Logo lebar (max 2MB)

@error('shop_logo')

{{ $message }}

@enderror
{{-- Logo Icon --}}

Logo kotak (max 1MB)

@error('shop_logo_icon')

{{ $message }}

@enderror

Template WhatsApp

Format pesan notifikasi order

@error('wa_template')

{{ $message }}

@enderror

Teks ini ditambahkan jika order piutang belum lunas

@error('wa_template_piutang')

{{ $message }}

@enderror

Variabel yang tersedia:

{nama} - Nama pelanggan {invoice} - No. invoice {tanggal} - Tanggal order {total} - Total harga {{-- BARU: list item order --}} {items} - Daftar item (produk + bahan + ukuran + qty) {sisa} - Sisa pembayaran {dibayar} - Jumlah dibayar

Gunakan *teks* untuk bold di WhatsApp

Kalau masih gk paham juga , Hub. Developer (Rio) pada tombol paling atas halaman utama berwarna hijau.

@endsection