@extends('backend.admin-master') @section('site-title') {{__('Product Coupon')}} @endsection @section('style') @endsection @section('content')
@include('backend/partials/message') @if($errors->any())
    @foreach($errors->all() as $error)
  • {{$error}}
  • @endforeach
@endif

{{__('All Product Coupon')}}

@foreach($all_product_coupon as $data) @endforeach
{{__('ID')}} {{__('Code')}} {{__('Discount')}} {{__('Expire Date')}} {{__('Status')}} {{__('Action')}}
{{$data->id}} {{$data->code}} {{$data->discount}}@if($data->discount_type == 'percentage') % @else {{site_currency_symbol()}} @endif {{date('d M Y',strtotime($data->expire_date))}} @if('publish' == $data->status) {{ucfirst($data->status)}} @else {{ucfirst($data->status)}} @endif

{{__('Add New Coupon')}}

@csrf
@endsection @section('script') @endsection