@extends('layouts.app') @section('template_title') Customer Coupon @endsection @section('content')
@if ($message = Session::get('success'))
{{ $message }}
@endif
{{ __('Customer Coupon') }}
Reset
@if (Request::has('search'))
Cari data berdasarkan "{{ Request::get('search') }}"
@endif
@foreach ($customerCoupons as $customerCoupon) @endforeach
No Costumer Id Coupon Id Masa Berlaku Tanggal Redeem Aksi
{{ ++$i }} {{ $customerCoupon->customer_id }} {{ $customerCoupon->coupon_id }} {{ $customerCoupon->masa_berlaku }} {{ $customerCoupon->tgl_redeem }}
Show Edit @csrf @method('DELETE')
{!! $customerCoupons->withQueryString()->links() !!}
@endsection