@extends('layouts.app') @section('title', __('report.register_report')) @section('content')

{{ __('report.register_report')}}

@component('components.filters', ['title' => __('report.filters')]) {!! Form::open(['url' => action([\App\Http\Controllers\ReportController::class, 'getStockReport']), 'method' => 'get', 'id' => 'register_report_filter_form' ]) !!}
{!! Form::label('location_id', __('business.business_location') . ':') !!} {!! Form::select('location_id', $location, null, ['class' => 'form-control select2', 'style' => 'width:100%', 'placeholder' => __('messages.all')]); !!}
{!! Form::label('cash_register_list_id', __('cash_register.cash_register_name') . ':') !!} {!! Form::select('cash_register_list_id', $crl, null, ['class' => 'form-control select2', 'style' => 'width:100%', 'placeholder' => __('messages.all')]); !!}
{!! Form::label('register_user_id', __('report.user') . ':') !!} {!! Form::select('register_user_id', $users, null, ['class' => 'form-control select2', 'style' => 'width:100%', 'placeholder' => __('report.all_users')]); !!}
{!! Form::label('register_status', __('sale.status') . ':') !!} {!! Form::select('register_status', ['open' => __('cash_register.open'), 'close' => __('cash_register.close')], null, ['class' => 'form-control select2', 'style' => 'width:100%', 'placeholder' => __('report.all')]); !!}
{!! Form::label('register_report_date_range', __('report.date_range') . ':') !!} {!! Form::text('register_report_date_range', null , ['placeholder' => __('lang_v1.select_a_date_range'), 'class' => 'form-control', 'id' => 'register_report_date_range', 'readonly']); !!}
{!! Form::close() !!} @endcomponent
@component('components.widget', ['class' => 'box-primary']) @if ($payment_types) @foreach ($payment_types as $key => $pt) @endforeach @endif {{-- @if ($payment_types['card']) @endif @if ($payment_types['cheque']) @endif @if ($payment_types['cash']) @endif @if ($payment_types['bank_transfer']) @endif @if ($payment_types['custom_pay_1']) @endif @if ($payment_types['custom_pay_2']) @endif @if ($payment_types['custom_pay_3']) @endif @if ($payment_types['custom_pay_4']) @endif @if ($payment_types['custom_pay_5']) @endif @if ($payment_types['custom_pay_6']) @endif @if ($payment_types['custom_pay_7']) @endif @if ($payment_types['other']) @endif @if ($payment_types['card']) @endif @if ($payment_types['cheque']) @endif @if ($payment_types['cash']) @endif @if ($payment_types['bank_transfer']) @endif @if ($payment_types['custom_pay_1']) @endif @if ($payment_types['custom_pay_2']) @endif @if ($payment_types['custom_pay_3']) @endif @if ($payment_types['custom_pay_4']) @endif @if ($payment_types['custom_pay_5']) @endif @if ($payment_types['custom_pay_6']) @endif @if ($payment_types['custom_pay_7']) @endif @if ($payment_types['other']) @endif
@lang('report.open_time') @lang('report.close_time') @lang('sale.location') @lang('cash_register.cash_register_name') @lang('report.user') {{$payment_types['card']}}{{$payment_types['cheque']}}{{$payment_types['cash']}}{{$payment_types['bank_transfer']}}@lang('lang_v1.total_advance_payment'){{$payment_types['custom_pay_1']}}{{$payment_types['custom_pay_2']}}{{$payment_types['custom_pay_3']}}{{$payment_types['custom_pay_4']}}{{$payment_types['custom_pay_5']}}{{$payment_types['custom_pay_6']}}{{$payment_types['custom_pay_7']}}{{$payment_types['other']}}@lang('sale.total') @lang('messages.action')
--}}
@lang('report.open_time') @lang('report.close_time') @lang('sale.location') @lang('cash_register.cash_register_name') @lang('report.user') @lang('cash_register.total_card_slips') @lang('cash_register.total_cheques') @lang('cash_register.total_cash') @lang('lang_v1.total_bank_transfer') @lang('lang_v1.total_advance_payment') {{$payment_types['custom_pay_1']}} {{$payment_types['custom_pay_2']}} {{$payment_types['custom_pay_3']}} {{$payment_types['custom_pay_4']}} {{$payment_types['custom_pay_5']}} {{$payment_types['custom_pay_6']}} {{$payment_types['custom_pay_7']}} {{$payment_types['other']}} @lang('sale.total') @lang('messages.action')
@endcomponent
@if (true)
1 2 3
4 5 6
7 8 9
0 Clr DEL
@endif @endsection @section('javascript') @endsection