@extends('admin.layouts.app') @section('title', 'Coupons') @section('content')

{{__('Coupons')}}

{{__('All Coupons listing')}}

@if (Session::has('message'))
{{ Session::get('message') }}
@endif @if(!empty($coupons)) @foreach($coupons as $k => $datas) @endforeach @else @endif
ID Code Type Amount Status Start Date End Date Action
{{$k+1}} {{$datas->code}} {{ucfirst($datas->type)}} {{$datas->amount}} @if($datas->status=='1') Activated @else De-Activated @endif {{ dateConvertFormat($datas->start_date) }} {{ dateConvertFormat($datas->end_date) }} Edit Delete
{{__('No record found')}}
@endsection