@extends('layouts.app') @section('title') {{ config('settings.company_name') }} -> {{ __('root.reports.notes') }} @stop @section('top-bar') @include('includes.top-bar') @stop @section('left-sidebar') @include('includes.left-sidebar') @stop @section('content') {{ __('root.reports.notes') }} {{ __('root.reports.ledger_type_wise') }} {{ __('root.reports.show_all') }} {{ csrf_field() }} {{ __('root.reports.select_ledger_type_name') }} @foreach ($income_expense_types as $Type) {{ $Type->name }} @endforeach {{ __('root.reports.select_branch_name') }} @foreach ($branches as $branch) {{ $branch->name }} @endforeach {{ __('root.reports.period') }} {{ __('root.reports.to') }} {{ __('root.reports.ledger_group_wise') }} {{ __('root.reports.show_all') }} {{ csrf_field() }} {{ __('root.reports.select_ledger_group_name') }} @foreach ($income_expense_groups as $Group) {{ $Group->name }} @endforeach {{ __('root.reports.select_branch_name') }} @foreach ($branches as $Branch) {{ $Branch->name }} @endforeach {{ __('root.reports.period') }} {{ __('root.reports.to') }} @stop @push('include-css') @endpush @push('include-js') @endpush