@extends('layouts.admin')
@section('title')
{{ __('User Logs') }}
@endsection
@section('action-button')
{{ Form::open(['route' => ['logindetails.index'], 'method' => 'get', 'id' => 'userlogs_filter']) }}
{{Form::month('month',isset($_GET['month'])?$_GET['month']: '',array('class'=>'form-control'))}}
{{ Form::select('user', $usersList, isset($_GET['user']) ? $_GET['user'] : '', ['class' => 'form-control select ', 'id' => 'id']) }}
{{ Form::close() }}
@endsection
@section('content')