@extends('layouts.master') @section('title','Chart Of Account') @section('page-header') Chart Of Account @stop @push('style') @endpush @section('content')
@foreach($accounts as $account) @endforeach
Sl Opening Date Name Balance Type Balance
{{ $loop->iteration }} {{ fdate($account->created_at) }} {{ $account->name }} {{ $account->balance_type }} {{ number_format($account->balance, 2) }}
@endsection @section('js') @endsection