@extends('layouts.app') @section('title', __('project::lang.my_tasks')) @section('content') @include('project::layouts.nav')

@lang('project::lang.tasks')

@component('components.filters', ['title' => __('report.filters')])
{!! Form::label('project_id', __('project::lang.project') . ':') !!} {!! Form::select('project_id', $projects, null, ['class' => 'form-control select2', 'placeholder' => __('messages.all'), 'style' => 'width: 100%;']); !!}
@if($is_admin)
{!! Form::label('assigned_to_filter', __('project::lang.assigned_to') . ':') !!}
{!! Form::select('assigned_to_filter', $users, null, ['class' => 'form-control select2', 'placeholder' => __('messages.all'), 'style' => 'width: 100%;']); !!}
@endif
{!! Form::label('status_filter', __('sale.status') . ':') !!} {!! Form::select('status_filter', $statuses, null, ['class' => 'form-control select2', 'placeholder' => __('messages.all'), 'style' => 'width: 100%;']); !!}
{!! Form::label('priority_filter', __('project::lang.priority') .':') !!} {!! Form::select('priority_filter', $priorities, null, ['class' => 'form-control select2', 'placeholder' => __('messages.all'), 'style' => 'width: 100%;']); !!}
{!! Form::label('due_date_filter', __('project::lang.due_date') . ':') !!} {!! Form::select('due_date_filter', $due_dates, null, ['class' => 'form-control select2', 'placeholder' => __('messages.all'), 'style' => 'width: 100%;']); !!}
@endcomponent @php $tool = '
'; @endphp @component('components.widget', ['class' => 'box-primary', 'title' => __( 'project::lang.my_tasks'), 'tool' => $tool])
@lang('messages.action') @lang('project::lang.project') @lang('project::lang.subject') @lang('project::lang.assigned_to') @lang('project::lang.priority') @lang('business.start_date') @lang('project::lang.due_date') @lang('sale.status') @lang('project::lang.assigned_by') @lang('project::lang.task_custom_field_1') @lang('project::lang.task_custom_field_2') @lang('project::lang.task_custom_field_3') @lang('project::lang.task_custom_field_4')
@endcomponent
@endsection @section('javascript') @endsection