@extends('layouts.app') {{-- Important Variables --}} @section('title') Trial Balance Manage @stop @section('top-bar') @include('includes.top-bar') @stop @section('left-sidebar') @include('includes.left-sidebar') @stop @section('content') {{__('lang.trail_balance')}} {{__('lang.search_criteria')}} {{ csrf_field() }} {{__('lang.select_project')}} {{__('lang.all_project')}} @if (App\Models\Branch::userProjects()->get()->count() > 0) @foreach (App\Models\Branch::userProjects()->get() as $Branch) {{ $Branch->name }} @endforeach @endif {{__('lang.project')}} {{__('lang.select_group_name')}} @if (App\Models\IncomeExpenseGroup::all()->count() > 0) @foreach (App\Models\IncomeExpenseGroup::all() as $group) {{ $group->name }} @endforeach @endif {{__('lang.group_name')}} {{__('lang.please_select')}} {{-- @if (App\Models\IncomeExpenseType::all()->count() > 0) @foreach (App\Models\IncomeExpenseType::all() as $group) {{ $group->name }} @endforeach @endif --}} {{__('lang.sub_group')}} {{-- It is not using anywhere --}} {{__('lang.detail')}} {{__('lang.summary')}} {{__('lang.without_bf')}} {{__('lang.with_bf')}} @include("admin.components.input.date",[ "name" => "to", "label"=> __('lang.upto'), "id"=> "bs_datepicker_range_container1", "value"=> "", "class"=> "", "col"=> "col-lg-4 col-md-4 col-sm-12 col-xs-12", ]) {{__('lang.with_zero_transaction')}} {{__('lang.without_zero_transaction')}} @if (userAllowedUnofficial()) {{__('lang.all')}} {{__('lang.official')}} {{__('lang.unofficial')}} {{__('lang.official_unofficial')}} @endif @include('admin.partials.module_type_select') {{__('lang.clear')}} @stop @push('include-css') @endpush @push('include-js') @endpush