@extends('admin.project.main') @section('projectCSS') @endsection @section('add-title') @if(Helpers::has_permission(Auth::user()->id, 'add_task'))  {{ __('New Task') }} @endif @endsection @section('projectContent')
@foreach($summary as $key=>$data) @php if ($data['color']) { $color = $data['color']; } else { $color = '008000'; } @endphp
{{ $data['name'] }}
{{ $data['total_status'] }}
@if($allassignee != Auth::user()->id) {{ __('Assign to me') }}: {{ $assign_to_me[$key] }} @endif
@endforeach
{!! $dataTable->table(['class' => 'table table-striped table-hover dt-responsive', 'width' => '100%', 'cellspacing' => '0']) !!}
@include('admin.task.details')
@endsection @section('projectJS') {!! $dataTable->scripts() !!} @include('admin.task.details_script') @endsection