@extends('layouts.app') {{-- Important Variables --}} @section('title') {{__('lang.investment_vs_expenses_summary')}} @stop @section('top-bar') @include('includes.top-bar') @stop @section('left-sidebar') @include('includes.left-sidebar') @stop @section('content') @php $common = new \App\Models\Common(); $setting = \App\Models\Setting::systemBuilder(); $unofficial_setting = userAllowedUnofficial() == 1; $groups = App\Models\IncomeExpenseGroup::all(); $selectedNames = ['FIXED ASSETS', 'CURRENT ASSETS', 'EXPENSES']; @endphp {{__('lang.investment_vs_expenses_summary')}} {{__('lang.search_criteria')}} @csrf {{__('lang.select_project_name')}} @foreach (App\Models\Branch::all() as $branch) {{ $branch->name }} @endforeach {{__('lang.project')}} @include("admin.components.input.date",[ "name" => "from", "label"=> __('lang.from'), "id"=> "bs_datepicker_container", "value"=> "", "class"=> "", "col"=> "col-lg-3 col-md-3 col-sm-12 col-xs-12", ]) @include("admin.components.input.date",[ "name" => "to", "label"=> __('lang.to'), "id"=> "bs_datepicker_container1", "value"=> "", "class"=> "", "col"=> "col-lg-3 col-md-3 col-sm-12 col-xs-12", ]) @if($unofficial_setting) {{__('lang.combine')}} {{__('lang.official')}} {{__('lang.unofficial')}} {{__('lang.official_state')}} @endif {{__('lang.select_group_name')}} @if (App\Models\IncomeExpenseGroup::all()->count() > 0) @foreach (App\Models\IncomeExpenseGroup::all() as $group) name, $selectedNames) ? 'selected' : '' }}>{{ $group->name }} @endforeach @endif {{__('lang.group_name')}} {{__('lang.clear')}} @stop @push('include-css') @endpush @push('include-js') @endpush