@extends('backend.layouts.app')
@section('content')
@include('backend.account.headerMenu')
Opening Balance Entry
| Sl |
Date |
Type |
Amount-BDT |
Remarks |
Action |
| Sl |
Date |
Type |
Amount-BDT |
Remarks |
Action |
@if(sizeof($model) > 0)
@foreach($model as $m)
| {{ ++$sl }} |
{{ date('d-m-Y',strtotime($m->date)) }} |
@if( $m->type == 'opening_balance' )
Opening Balance
@elseif($m->type== 'cash_in_hand')
Cash In Hand
@else
FDR
@endif
|
{{ $m->amount }} |
{{ $m->remarks }} |
|
@endforeach
@endif
@endsection
@section('modal_content')
@endsection
@section('page_script')>
@endsection