{{-- resources/views/admin/promos/edit.blade.php --}} @extends('layouts.admin') @section('title', 'Edit Promotion') @section('page_title', 'Edit Promotion') @section('icon', 'fa-edit') @section('breadcrumb') @endsection @section('content')
Edit Promotion: {{ $promo['name'] }}
Cancel
@csrf @method('PUT')
Basic Information
@error('name')
{{ $message }}
@enderror
@error('type')
{{ $message }}
@enderror
{{ $promo['type'] == 'percentage' ? '%' : ($promo['type'] == 'fixed' ? 'Rp' : '') }} @error('discount_value')
{{ $message }}
@enderror
@if($promo['type'] == 'percentage') Enter percentage (e.g., 10 for 10%) @elseif($promo['type'] == 'fixed') Enter fixed amount (e.g., 5000 for Rp 5,000) @else Buy One Get One - No value needed @endif
@error('code')
{{ $message }}
@enderror Leave blank for auto-apply promotions
@error('max_discount')
{{ $message }}
@enderror Maximum discount amount (for percentage discounts)
@error('description')
{{ $message }}
@enderror
Validity Period
@error('start_date')
{{ $message }}
@enderror
@error('end_date')
{{ $message }}
@enderror
@error('min_purchase')
{{ $message }}
@enderror Minimum order amount to apply this promo
Statistics
Current Stats

Total Uses: {{ $promo['usage_count'] ?? 0 }}

Total Discount: Rp {{ number_format($promo['total_discount_given'] ?? 0, 0, ',', '.') }}

Last Used: @if($promo['last_used'] ?? false) {{ date('d M Y', strtotime($promo['last_used'])) }} @else Never used @endif

@endsection @section('scripts') @endsection