@extends('Layouts.adminLayout') @section('title') {{__('List Discount Code')}} @endsection @section('css') @endsection @section('breadcrumb')
@endsection @section('content')
@php $i=1; @endphp @foreach($data['discountCodes'] as $value) @if($value->from_date !=0) @else @endif @endforeach
{{__('Index')}} {{__('Title')}} {{__('Code')}} {{__('From Date')}} {{__('To Date')}} {{__('Possibilities')}}
{{$i++}} {{$value->title}} {{$value->code}}{{timestampDate($value->from_date,true)['date']}} {{timestampDate($value->to_date,true)['date']}}- -
@endsection @section('script') @endsection