@extends('layouts.app') {{--Important Variables--}} @section('title') {{ $report_name }} @stop @section('top-bar') @include('includes.top-bar') @stop @section('left-sidebar') @include('includes.left-sidebar') @stop @section('content') {{ $report_name }} {{__('lang.search_criteria')}} @csrf {{__('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')}} @foreach($cash_heads as $cash_head ) {{ $cash_head->name }} ({{ $cash_head->reference_type }}) @endforeach {{__('lang.cash_account')}} @include("admin.components.input.date",[ "name" => "from", "label"=> __('lang.from'), "id"=> "bs_datepicker_container", "value"=> "", "class"=> "", "col"=> "col-lg-6 col-md-6 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-6 col-md-6 col-sm-12 col-xs-12", ]) {{__('lang.with_heads')}} {{__('lang.without_heads')}} {{__('lang.clear')}} @stop @push('include-css') @endpush @push('include-js') @endpush