@extends('panel.layout.app') @section('title', __('Manage Coupons')) @section('content')
@foreach($coupon?->usersUsed ?? [] as $user) @endforeach @if(count($coupon?->usersUsed ?? []) == 0) @endif
{{__('User')}} {{__('Email')}} {{__('Using Date')}}
{{$user->name." ".$user->surname}} {{$user->email}} {{$user->pivot->created_at}}
{{__('There is no users used the coupon yet')}}
@endsection @section('script') @endsection