@extends('admin.layouts.admin')
@section('title')
index coupons
@endsection
@section('script')
@endsection
@section('content')
لیست کوپن ها ({{ $coupons->total() }})
# |
کد |
نوع |
کاربر |
باقی مانده |
تاریخ انقضا |
عملیات |
@foreach ($coupons as $key => $coupon)
{{ $coupons->firstItem() + $key }}
|
{{ $coupon->code }}
|
{{ $coupon->type }}
|
{{ $coupon->user_id==null ? 'برای همه کاربران' : $coupon->User->name }}
|
{{ $coupon->times }}
|
{{ verta($coupon->expired_at)->format('Y-m-d') }}
|
|
@endforeach
{{ $coupons->render() }}
@include('admin.coupons.modal')
@endsection