@include('theme.backend.adminlte.charge.widget.addedit',['o'=>NULL,'so'=>$o])
ID |
Created |
Charge |
Type |
Q |
Total |
Processed |
@forelse(Charge::where('service_id',$o->id)->active()->orderBy('charge_at','DESC')->with(['account'])->get() as $oo)
{{ $oo->id }} |
{{ $oo->created_at->format('Y-m-d') }} |
{{ $oo->charge_at?->format('Y-m-d') }} |
{{ $oo->type_name }} |
{{ number_format($oo->quantity) }} |
{{ number_format($oo->total,2) }} |
{{ $oo->processed ? 'YES' : 'NO' }}
@if(! $oo->processed)
@endif
|
@empty
No Charges for this Service |
@endforelse