@extends('layouts.app') {{--Important Variables--}} @section('title') {{__('lang.ledger_manage')}} @stop @section('top-bar') @include('includes.top-bar') @stop @section('left-sidebar') @include('includes.left-sidebar') @stop @section('content') {{__('lang.vendor_ledger')}} {{__('lang.search_criteria')}} {{__('lang.head_of_account')}} {{-- {{__('lang.select_project')}} --}} {{-- {{__('lang.all_project')}} --}} @if (App\Models\Branch::userProjects()->get()->count() >0 ) @foreach( App\Models\Common::userProjectsModuleWise() as $Branch ) {{ $Branch->name }} @endforeach @endif {{__('lang.project')}} {{__('lang.voucher_type')}} {{__('lang.sale_order')}} {{__('lang.payment_voucher')}} {{__('lang.receipt_voucher')}} {{__('lang.journal_voucher')}} {{__('lang.opening_balance')}} {{__('lang.refund_computation')}} {{__('lang.voucher')}} {{__('lang.cheque_no')}} {{__('lang.particular')}} {{__('lang.detail')}} {{__('lang.summary')}} @include("admin.components.input.date",[ "name" => "from", "label"=> __('lang.from'), "id"=> "bs_datepicker_range_container", "value"=> "", "class"=> "", "col"=> "col-lg-4 col-md-4 col-sm-12 col-xs-12", ]) @include("admin.components.input.date",[ "name" => "to", "label"=> __('lang.to'), "id"=> "bs_datepicker_range_container1", "value"=> "", "class"=> "", "col"=> "col-lg-4 col-md-4 col-sm-12 col-xs-12", ]) {{__('lang.voucher_date')}} {{__('lang.cheque_date')}} {{-- All Official Unofficial Official / Unofficial --}} @if (userAllowedUnofficial()) {{__('lang.combine')}} {{__('lang.separate')}} {{__('lang.official')}} {{__('lang.unofficial')}} {{__('lang.official_unofficial')}} @endif @include('admin.partials.module_type_select') @php $ledger_options = [ 'registration_no' => __('lang.registration_no'), 'instrument_no' => __('lang.instrument_no'), 'reference_no' => __('lang.reference_no'), 'payee_name' => __('lang.payee_name'), 'mode_of_payment' => __('lang.mode_of_payment'), 'custom_particulars' => __('lang.custom_particulars'), ]; @endphp @foreach ($ledger_options as $ledger_option => $ledger_option_value) {{ $ledger_option_value }} @endforeach {{__('lang.hide_column_options')}} {{__('lang.clear')}} @stop @push('include-css') @endpush @push('include-js') @endpush