@extends('layouts.app') @section('title', config('app.name') . ' - Informasi Voucher') @section('content')
Informasi Voucher
Kode Voucher
{{ $voucher->voucher_code }}
Merchant
{{ $voucher->merchant_name ?? '-' }}
Discount Percentage
{{ $voucher->discount_percentage !== null ? rtrim(rtrim((string) $voucher->discount_percentage, '0'), '.') . '%' : '-' }}
Nominal Value
{{ $voucher->nominal_value !== null ? 'Rp ' . number_format((float) $voucher->nominal_value, 0, ',', '.') : '-' }}
Valid From
{{ $voucher->valid_from ?? '-' }}
Valid Until
{{ $voucher->valid_until ?? '-' }}
Tanggal Dibuat
{{ $voucher->created_at ?? '-' }}
Tanggal Diupdate
{{ $voucher->updated_at ?? '-' }}
Gambar Voucher
@if (!empty($voucher->voucher_photo)) Gambar Voucher @else - @endif
@endsection