@extends('admin.layouts.app') @section('title', 'Supplier Payment Logs') @push('styles') @include('datatable.css.data_table_css') @endpush @section('container')
Use .table-striped to add zebra-striping to any table row
within the <tbody>.
| SL | Receipt No. | User | Type | Date | @foreach($logs as $index => $log)
|---|---|---|---|---|
| {{ $index+1 }} | {{ $log->supplierPayment->voucher_no??'' }} | {{ $log->user->name??'' }} | {{ $log->status }} | {{ date('d-m-Y H:i:s',strtotime($log->created_at)) }} |