@extends('layouts.admin') @section('title', '| Coupons') @section('content')

{{ __('Coupons') }}

{{ __('New coupon') }}
@foreach ($coupons as $coupon ) @endforeach
{{ __('Name') }} {{ __('Percent off') }} {{ __('Coupon Code') }} {{ __('Duration') }} {{ __('Date') }} {{ __('Action') }}
{{ $coupon->name }} {{ $coupon->percent_off }} % {{ $coupon->gateway_id }} {{ $coupon->duration }} {{ $coupon->created_at->diffForHumans() }}
@csrf @method('DELETE')
@endsection