@extends('adminlte::page') @section('title', 'Coupons') @section('content_header')

Coupons

@stop @section('content')
@php $i= 1; @endphp @foreach ($coupons as $service) @php $i++; @endphp @endforeach
No. Name Coupon Value (%) Created At Action
{{$i}}. {{$service->name}} {{$service->discount_perc}} % {{ $service->created_at->format('d-m-Y H:i:s') ?? 'N/A' }} Delete
{{ $coupons->withQueryString()->links('pagination::bootstrap-4') }}
@stop @section('css') @stop @section('js') @stop