@extends('panel.layout.app') @section('title', __('Manage Coupons')) @section('content')
@foreach($list ?? [] as $entry) @endforeach @if(count($list ?? []) == 0) @endif
{{__('Name')}} {{__('Code')}} {{__('Discount (%)')}} {{__('Limit')}} {{__('Used')}} {{__('Created By')}} {{__('Action')}}
{{$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
{{__('There is no coupons yet')}}
@endsection @section('script') @endsection