@extends('layouts.app') @section('content')
{{translate('Add New Discount')}}

{{translate('Discount Information')}}

@foreach($discounts as $key => $row) @endforeach
# {{translate('Offer Title')}} {{translate('Coupon Code')}} {{translate('Status')}} {{translate('Options')}}
{{$key+1}} {{ ucfirst(str_replace('_', ' ', $row->discount_type)) }} {{ strtoupper($row->coupon->code)}}
@endsection @section('script') @endsection