@extends('layouts.admin') @push('title', get_phrase('Coupon')) @push('meta')@endpush @push('css')@endpush @section('content')

{{ get_phrase('Coupon') }}

{{ get_phrase('Add Coupon') }}
@if (count($coupons) > 0)

{{ get_phrase('Showing') . ' ' . count($coupons) . ' ' . get_phrase('of') . ' ' . $coupons->total() . ' ' . get_phrase('data') }}

@foreach ($coupons as $key => $coupon) @endforeach
@else @include('admin.no_data') @endif @if (count($coupons) > 0)

{{ get_phrase('Showing') . ' ' . count($coupons) . ' ' . get_phrase('of') . ' ' . $coupons->total() . ' ' . get_phrase('data') }}

{{ $coupons->links() }}
@endif
@endsection @push('js')@endpush