@extends('layouts.app') @section('title', __('goals::goals.goals_report')) @section('content')

@lang('goals::goals.goals_report')

@component('components.filters', ['title' => __('report.filters')])
{!! Form::label('group_id', __('goals::goals.group') . ':') !!} {!! Form::select('group_id', $groups ?? [], null, [ 'class' => 'form-control select2', 'style' => 'width:100%', 'placeholder' => __('lang_v1.select_all'), ]) !!}
{!! Form::label('user_id', __('lang_v1.username') . ':') !!} {!! Form::select('user_id', $users ?? [], null, [ 'class' => 'form-control select2', 'style' => 'width:100%', 'placeholder' => __('lang_v1.select_all'), ]) !!}
{!! Form::label('created_by', __('lang_v1.added_by') . ':') !!} {!! Form::select('created_by', $users ?? [], null, [ 'class' => 'form-control select2', 'style' => 'width:100%', 'placeholder' => __('lang_v1.select_all'), ]) !!}
{!! Form::label('supervisor_id', __('goals::goals.supervisor') . ':') !!} {!! Form::select('supervisor_id', $users ?? [], null, [ 'class' => 'form-control select2', 'style' => 'width:100%', 'placeholder' => __('lang_v1.select_all'), ]) !!}
{!! Form::label('goal_on', __('goals::goals.goal_on') . ':') !!} {!! Form::select('goal_on', $goalOnTranslations ?? [], null, [ 'class' => 'form-control select2', 'style' => 'width:100%', 'placeholder' => __('lang_v1.select_all'), ]) !!}
@endcomponent @component('components.widget', ['class' => 'box-primary', 'title' => __('goals::goals.goals_report')]) @can('goals.view')
@lang('user.name') @lang('goals::goals.group') @lang('goals::goals.goal_on') @lang('goals::goals.item.name') @lang('goals::goals.goal_type') @lang('goals::goals.start_date') @lang('goals::goals.end_date') @lang('goals::goals.percentage_done') @lang('goals::goals.amount_type') @lang('goals::goals.amount_or_qty') @lang('goals::goals.supervisor') @lang('lang_v1.added_by')
.
@endcan @endcomponent @stop @section('javascript') @endsection