@extends('layout.app') @section('title', 'Detail Voucher - Sistem Manajemen ISP') @section('content') arrow_back Kembali edit Edit
Informasi Voucher

{{ $voucher->kode_voucher }}

{{ $voucher->status }}

{{ $voucher->paket->nama_paket ?? '-' }}

Rp {{ number_format($voucher->harga, 0, ',', '.') }}

{{ $voucher->masa_aktif_hari }} hari

{{ $voucher->created_at->format('d/m/Y H:i') }}

@if($voucher->pelanggan)

{{ $voucher->pelanggan->nama }}

{{ $voucher->tanggal_digunakan ? $voucher->tanggal_digunakan->format('d/m/Y H:i') : '-' }}

@endif
Aksi
@if($voucher->status === 'Belum Digunakan')
@csrf
@endif @if($voucher->status === 'Aktif')
info Voucher sudah aktif dan dapat digunakan.
@endif @if($voucher->status === 'Terpakai')
check_circle Voucher sudah digunakan.
@endif @if($voucher->status === 'Expired')
warning Voucher sudah expired.
@endif
Informasi Paket
@if($voucher->paket)

{{ $voucher->paket->nama_paket }}

{{ $voucher->paket->kecepatan }}

{{ $voucher->paket->jenis }}

{{ $voucher->paket->grup_paket }}

@else
warning Paket internet tidak ditemukan.
@endif
@endsection