@extends('layouts.app') @section('title', __('lang_v1.activity_log')) @section('content')

{{ __('lang_v1.activity_log')}}

@component('components.filters', ['title' => __('report.filters')])
{!! Form::label('al_users_filter', __( 'lang_v1.by' ) . ':') !!} {!! 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']); !!}
@endcomponent
@component('components.widget', ['class' => 'box-primary'])
@lang('lang_v1.date') @lang('lang_v1.subject_type') @lang('messages.action') @lang('lang_v1.by') @lang('brand.note')
@endcomponent
@endsection @section('javascript') @endsection