芝麻web文件管理V1.00
编辑当前文件:/home/sditechnicalteam/public_html/resources/views/reports/tasks/index.blade.php
@extends('layouts.app') @push('datatable-styles') @include('sections.datatable_css') @endpush @section('filter-section')
@lang('app.date')
@lang('app.status')
@lang('app.all')
@lang('modules.tasks.hideCompletedTask')
@foreach ($taskBoardStatus as $status)
{{ $status->slug == 'completed' || $status->slug == 'incomplete' ? __('app.' . $status->slug) : mb_ucwords($status->column_name) }}
@endforeach
@lang('app.project')
@lang('app.all')
@foreach ($projects as $project)
{{ mb_ucwords($project->project_name) }}
@endforeach
@lang('app.clearFilters')
@lang('app.client')
@lang('app.all')
@foreach ($clients as $client)
@endforeach
@lang('modules.tasks.assignTo')
@lang('app.all')
@foreach ($employees as $employee)
@endforeach
@lang('modules.tasks.assignBy')
@lang('app.all')
@foreach ($employees as $employee)
@endforeach
@lang('app.label')
@lang('app.all')
@foreach ($taskLabels as $label)
{{ $label->label_name }}
@endforeach
@lang('modules.taskCategory.taskCategory')
@lang('app.all')
@foreach ($taskCategories as $categ)
{{ mb_ucwords($categ->category_name) }}
@endforeach
@lang('app.billableTask')
@lang('app.all')
@lang('app.yes')
@lang('app.no')
@endsection @section('content')
{!! $dataTable->table(['class' => 'table table-hover border-0 w-100']) !!}
@endsection @push('scripts') @include('sections.datatable_js') @endpush