@extends('layouts/acc_layout') @section('title', '| OTS Register') @section('content')

OTS PAYMENT LIST

@foreach($payments as $index => $payment) @endforeach
SL# Date Payment ID Amount Action
{{$index+1}} {{date('d-m-Y',strtotime($payment->paymentDate))}} {{$payment->paymentId}} {{number_format($payment->amount,2,'.',',')}}    
{{-- View Modal --}} {{-- End View Modal --}} {{-- Edit Modal --}} {{-- End Edit Modal --}} {{-- Delete Modal --}} {{-- End Delete Modal --}} @include('dataTableScript') @endsection