@extends('layouts.master') @section('header') @include('layouts.partials.header') @endsection @section('navbar') @include('layouts.partials.nav') @endsection @section('sidebar') @include('layouts.partials.sidebar') @endsection @section('content')

{{__("Coupons")}}

@include('layouts.partials.flash-message')
@foreach($items as $item) @endforeach
{{__("ID")}} {{__("Coupon Code")}} {{__("Categories")}} {{__("Products")}} {{__("Countries")}} {{__("Cities")}} {{__("Regions")}} {{__("Discount Type")}} {{__("Discount Amount")}} {{__("Free Shipped")}} {{__("No. Usage")}} {{__("For Single User")}} {{__("Until Today")}} {{__("Expiration Date")}} {{__("Last Usage Date")}} {{__("Status")}} {{__("Actions")}}
{{$item->id}} {{$item->code}} {{$item->categories_names}} {{$item->products_names}} {{$item->countries_names}} {{$item->cities_names}} {{$item->regions_names}} {{__($item->type)}} @if($item->type=='percentage') {{$item->discount_amount ." %"}} @else {{__("Based on country")}} @endif @if($item->free_shipped==1){{__("Yes")}}@else {{__("No")}} @endif {{$item->total_available_coupons}} {{$item->available_coupons_per_customer}} {{$item->number_of_used_coupons}} @if(!is_null($item->expire_date)){{date("d/m/Y",strtotime($item->expire_date))}}@else --- @endif @if(!empty($item->last_coupon_date)){{date("d/m/Y",strtotime($item->last_coupon_date))}}@else --- @endif @if($item->status==1){{__("Active")}}@else{{__("Inactive")}}@endif
@endsection @section('footer') @include('layouts.partials.footer') @endsection @section('scripts') @include('layouts.partials.scripts') @endsection