@extends('panel.layout.app', ['disable_tblr' => true])
@section('title', __('Manage Coupons'))
@section('titlebar_actions')
{{ __('Add New Coupon') }}
@endsection
@section('content')
{{ __('Name') }}
|
{{ __('Code') }}
|
{{ __('Discount (%)') }}
|
{{ __('Limit') }}
|
{{ __('Used') }}
|
{{ __('Created By') }}
|
{{ __('Action') }}
|
@foreach ($list ?? [] as $entry)
{{ $entry->name }}
|
{{ $entry->code }}
|
{{ $entry->discount }}%
|
{{ $entry->limit }}
|
{{ $entry->usersUsed->count() }}
|
{{ $entry->createdBy->name }}
{{ date('j.n.Y', strtotime($entry->created_at)) }}
|
@if ($app_is_demo)
@else
@endif
|
@endforeach
@if (count($list ?? []) == 0)
{{ __('There is no coupons yet') }}
|
@endif
@endsection