@extends('layouts.app') @section('title', __('Payment Activity Log Report')) @section('content')

@lang('Payment Activity Log Report')

@component('components.filters', ['title' => __('report.filters')])
{!! Form::label('al_users_filter', __('Users') . ':') !!} {!! Form::select('al_users_filter', $users, null, [ 'class' => 'form-control select2', 'style' => 'width:100%', 'id' => 'al_users_filter', 'placeholder' => __('lang_v1.all'), ]) !!}
{!! Form::label('subject_type', __('lang_v1.subject_type') . ':') !!} {!! Form::select('subject_type', $transaction_types, null, [ 'class' => 'form-control select2', 'style' => 'width:100%', 'id' => 'subject_type', 'placeholder' => __('lang_v1.all'), ]) !!}
{!! Form::label('al_date_filter', __('report.date_range') . ':') !!} {!! Form::text('al_date_filter', null, [ 'placeholder' => __('lang_v1.select_a_date_range'), 'class' => 'form-control', 'readonly', 'id' => 'al_date_filter', ]) !!}
@endcomponent
@component('components.widget', ['class' => 'box-primary'])
@lang('lang_v1.date') @lang('lang_v1.subject_type') @lang('messages.action') @lang('Username') @lang('Payment Before') @lang('Payment After')
@endcomponent
@endsection @section('javascript') @endsection