@extends('layouts.parents.master') @section('title') {{studentCommonName(auth()->guard('student')->user()->username).__(' | Store Ledger')}} @endsection @section('headerTitle') {{__('Store Ledgers')}} @endsection @section('content')
@foreach ($responseData as $key) @endforeach
S.No Date Time Item Qty Rate
{{$loop->iteration}} {{date('d-m-Y',strtotime($key->date))}} {{$key->time}} {{$key->item_name}} {{$key->qty}} {{$key->rate}}
@endsection @push('web-scripts') @endpush