@extends('layouts.admin.app') @section('content') {{-- --}}
Users Voucher Detail Total : {{ count($data02) }}

@if(Session::has('success'))
{{ Session::get('success2') }}
@endif @if(Session::has('error'))
{{ Session::get('error2') }}
@endif
@foreach($data02 as $order) @endforeach
Date Remark Name Amount Action
{{ date('d M Y',strtotime($order->created_at)) }}
{{Str::limit($order->remark,50, $end='...')}}
{{ ($order->course_id=='Other')?'Other':$order->name }} {{ $order->amount }} edit
Users Order Detail Total : {{ count($data01) }}

@if(Session::has('success'))
{{ Session::get('success') }}
@endif @if(Session::has('error'))
{{ Session::get('error') }}
@endif
{{--
@csrf
Reset
--}}
@foreach($data01 as $order) @endforeach
Date Remark Name Amount
{{ date('d M Y',strtotime($order->created_at)) }} {{ $order->name }} {{ $order->course_amount }}
@include('layouts.admin.footer')
@endsection