@extends('layouts.app') {{--Important Variables--}} @section('title') {{ config('settings.company_name') }} -> Notes @stop @section('top-bar') @include('includes.top-bar') @stop @section('left-sidebar') @include('includes.left-sidebar') @stop @section('content') Notes LEDGER TYPE WISE Anything is select show all {{ csrf_field() }} Select Ledger Type Name @foreach( App\IncomeExpenseType::all() as $Type ) {{ $Type->name }} @endforeach Select Project Name @if (App\Branch::all()->count() >0 ) @foreach( App\Branch::all() as $Branch ) {{ $Branch->name }} @endforeach @endif Period to Period to LEDGER GROUP WISE Anything is select show all {{ csrf_field() }} Select Ledger Group Name @foreach( App\IncomeExpenseGroup::all() as $Group ) {{ $Group->name }} @endforeach Select Project Name @if (App\Branch::all()->count() >0 ) @foreach( App\Branch::all() as $Branch ) {{ $Branch->name }} @endforeach @endif Period to Period to @stop @push('include-css') @endpush @push('include-js') @endpush