@extends('layouts.app_admin') @section('content') Dashboard > Working Capital History @include('admin.session_message.success') @include('admin.session_message.error') S. No. Year Month Limit Sanctioned Amount Final Amount Created at @foreach($enquiry as $value) {{ $loop->iteration }} {{ $value->year }} {{ $value->month }} {{ $value->interest_amount }} {{ $value->sanctioned_amount }} {{ $value->final_total }} {{ date('d M Y',strtotime($value->created_at)) }} @endforeach @endsection