JFIFxxC      C  " }!1AQa"q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w!1AQaq"2B #3Rbr@extends('layouts.admin') @push('script-page') @endpush @section('page-title') {{ __('Manage Coupon') }} @endsection @section('action-button') @can('create coupon') @endcan @endsection @section('breadcrumb') @endsection @section('content')
{{--
--}}
@foreach ($coupons as $coupon) @endforeach
{{ __('Name') }} {{ __('Code') }} {{ __('Discount (%)') }} {{ __('Limit') }} {{ __('Used') }} {{ __('Action') }}
{{ $coupon->name }} {{ $coupon->code }} {{ $coupon->discount }} {{ $coupon->limit }} {{ $coupon->used_coupon() }} @can('edit coupon') @endcan @can('delete coupon')
{!! Form::open(['method' => 'DELETE', 'route' => ['coupons.destroy', $coupon->id], 'id' => 'delete-form-' . $coupon->id]) !!} {!! Form::close() !!}
@endcan
@endsection