@extends('layouts.app') @section('title', __('accounting-reports::lang.journal_entry_management')) @section('content')

@lang('accounting-reports::lang.journal_entry_management')

@component('components.widget', ['class' => 'box-primary'])

{!! Form::label('filter_from_date', __('accounting-reports::lang.from_date') . ':') !!} {!! Form::text('filter_from_date', null, ['class' => 'form-control date-picker', 'id' => 'filter_from_date', 'readonly']) !!}
{!! Form::label('filter_to_date', __('accounting-reports::lang.to_date') . ':') !!} {!! Form::text('filter_to_date', null, ['class' => 'form-control date-picker', 'id' => 'filter_to_date', 'readonly']) !!}
{!! Form::label('filter_location_id', __('accounting-reports::lang.location') . ':') !!} {!! Form::select('filter_location_id', $locations, null, ['class' => 'form-control select2', 'id' => 'filter_location_id', 'placeholder' => __('lang_v1.all'), 'style' => 'width:100%']) !!}
{!! Form::label('filter_source_module', __('accounting-reports::lang.source_module') . ':') !!} {!! Form::select('filter_source_module', [ '' => __('lang_v1.all'), 'manual' => 'Manual', 'sale' => 'Sale', 'purchase' => 'Purchase', 'expense' => 'Expense', 'payment' => 'Payment', 'receipt' => 'Receipt', ], null, ['class' => 'form-control select2', 'id' => 'filter_source_module', 'style' => 'width:100%']) !!}
{!! Form::label('search', __('lang_v1.search') . ':') !!} {!! Form::text('search', null, ['class' => 'form-control', 'id' => 'search', 'placeholder' => __('lang_v1.search_placeholder')]) !!}
@lang('accounting-reports::lang.voucher_no') @lang('accounting-reports::lang.voucher_date') @lang('accounting-reports::lang.narration') @lang('accounting-reports::lang.reference') @lang('accounting-reports::lang.location') @lang('accounting-reports::lang.source_module') @lang('accounting-reports::lang.debit') @lang('accounting-reports::lang.credit') Status @lang('messages.action')
@endcomponent
@endsection @section('javascript') @endsection