@extends('layouts.admin') @section('style') @endSection @section('content') @component('admin.components.tabs') @foreach($promo_codes as $promo_code) @endforeach
No. Code Max Use Max Use Per User Used Count Status Description Created Date Actions
{{ $promo_code->code }} {{ $promo_code->max_use == 0 ? 'Unlimited' : $promo_code->max_use }} {{ $promo_code->max_use_per_user }} {{ $promo_code->total_usage_count }} @switch($promo_code->status) @case('active') Active @break @case('inactive') Inactive @break @case('expired') Expired @break @default {{ ucfirst($promo_code->status) }} @break @endswitch {{ Str::limit($promo_code->description, 50) }} {{ $promo_code->created_at->format('d/m/Y H:i') }} Edit
@csrf @method('DELETE')
@endcomponent @endsection @section('script') @endSection