@extends('layouts.admin') @section('title', 'Chỉnh sửa giftcode: ' . $giftcode->code . ' - MU Admin Panel') @section('styles') @endsection @section('content') @if($errors->any())

❌ Có lỗi xảy ra:

@endif

✏️ Chỉnh sửa giftcode

Cập nhật thông tin giftcode {{ $giftcode->code }}

📋 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.

@csrf
Tên mô tả cho giftcode
Mô tả chi tiết về giftcode
Tối thiểu {{ $giftcode->used_count }} (đã sử dụng)
Để trống nếu không giới hạn thời gian
Không thể thay đổi mã giftcode
Số lần đã được sử dụng
is_active ? 'checked' : '' }}>
Bỏ tick để vô hiệu hóa giftcode
❌ Hủy bỏ
@endsection @section('scripts') @endsection