@extends('layouts.app')
@section('title', __('project::lang.my_tasks'))
@section('content')
@include('project::layouts.nav')
@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)
@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