@extends('layouts.admin')
@section('title', 'Chỉnh sửa giftcode: ' . $giftcode->code . ' - MU Admin Panel')
@section('styles')
@endsection
@section('content')
📋 Thông tin giftcode
{{ $giftcode->code }}
Ngày tạo:
{{ date('d/m/Y H:i', strtotime($giftcode->created_at)) }}
Tạo bởi:
{{ $giftcode->admin_username ?? 'N/A' }}
📊 Thống kê sử dụng
@php
$usagePercent = $giftcode->max_uses > 0 ? ($giftcode->used_count / $giftcode->max_uses) * 100 : 0;
@endphp
Đã sử dụng:
{{ $giftcode->used_count }} / {{ $giftcode->max_uses }} lượt
{{ number_format($usagePercent, 1) }}% đã sử dụng
🎁 Phần thưởng hiện tại
@if(isset($giftcode->rewards['coins']) && $giftcode->rewards['coins'] > 0)
💰 Coin:
{{ number_format($giftcode->rewards['coins']) }}
@endif
@if(isset($giftcode->rewards['items']) && count($giftcode->rewards['items']) > 0)
@foreach($giftcode->rewards['items'] as $item)
🎁 {{ $item['name'] }}:
{{ $item['quantity'] }}
@endforeach
@endif
@if((!isset($giftcode->rewards['coins']) || $giftcode->rewards['coins'] == 0) &&
(!isset($giftcode->rewards['items']) || count($giftcode->rewards['items']) == 0))
Không có phần thưởng
@endif
⚠️ Lưu ý quan trọng
Chỉ có thể chỉnh sửa một số thông tin cơ bản. Mã giftcode và phần thưởng không thể thay đổi sau khi tạo.