@extends('layouts.admin') @push('title', get_phrase('Coupon')) @push('meta')@endpush @push('css')@endpush @section('content')
{{ get_phrase('Showing') . ' ' . count($coupons) . ' ' . get_phrase('of') . ' ' . $coupons->total() . ' ' . get_phrase('data') }}
# | {{ get_phrase('Coupon code') }} | {{ get_phrase('Discount') }} | {{ get_phrase('Expiry') }} | {{ get_phrase('Status') }} | {{ get_phrase('Options') }} |
---|---|---|---|---|---|
{{ ++$key }} |
{{ $coupon->code }} |
{{ $coupon->discount }} {{ get_phrase('%') }} |
{{ date('d-M-Y', $coupon->expiry) }} |
{{ get_phrase($coupon->status ? 'Active' : 'Inactive') }} |
{{ get_phrase('Showing') . ' ' . count($coupons) . ' ' . get_phrase('of') . ' ' . $coupons->total() . ' ' . get_phrase('data') }}
{{ $coupons->links() }}