@extends('layouts.app') @section('breadcrumb') @stop @section('content')

{!! trans('messages.generate') !!} {!! trans('messages.attendance').' '.trans('messages.report') !!}

{!! Form::open(['url'=>'/attendance-report/download', 'id'=>'download-attendance-form', 'data-submit'=>'noAjax']) !!}
{{trans('messages.to')}}
@if (!isClientRole())
{!! Form::label('user',trans('messages.user'),[]) !!} {!! Form::select('users[]',$users,'',['class'=>'form-control show-tick','title'=>trans('messages.select').' '.trans('messages.user'),'multiple'=>'multiple','data-actions-box'=>'true']) !!}
@endif
{!! Form::label('locations',trans('messages.location'),[]) !!} {!! Form::select('locations[]',$locations,'',['class'=>'form-control show-tick','title'=>trans('messages.select').' '.trans('messages.location'),'multiple'=>'multiple','data-actions-box'=>'true']) !!}
@if (env('COMPANY_ID') == 205) {!! Form::hidden('download_as','excel') !!} @else
{!! Form::label('download_as',trans('messages.download').' '.trans('messages.as'),[]) !!} {!! Form::select('download_as',['pdf'=>'PDF', 'excel'=>'Excel'],'pdf',['class'=>'form-control show-tick', 'title'=>trans('messages.download').' '.trans('messages.as')]) !!}
@endif
{!! Form::submit(trans('messages.download'),['id' => 'm-submit', 'class' => 'btn btn-success pull-right']) !!}
{!! Form::close() !!}
@if(parse_url(request()->root())['host'] == 'guthrie.armfort.com')

{!! trans('messages.generate') !!} Timesheet

{!! Form::open(['url'=>'/attendance-report/download', 'id'=>'download-attendance-form', 'data-submit'=>'noAjax']) !!}
{{trans('messages.to')}}
@if (!isClientRole())
{!! Form::label('user',trans('messages.user'),[]) !!} {!! Form::select('users[]',$users,'',['class'=>'form-control show-tick','title'=>trans('messages.select').' '.trans('messages.user'),'multiple'=>'multiple','data-actions-box'=>'true']) !!}
@endif {!! Form::hidden('download_as','timesheet') !!}
{!! Form::submit(trans('messages.download'),['id' => 'm-submit', 'class' => 'btn btn-success pull-right']) !!}
{!! Form::close() !!}
@endif @stop