@extends('layouts.app') @section('css') {{-- Datatable --}} @endsection @section('content')
{{ __('Users') }} >> {{ __('Tasks') }} >> {{ isset($user->full_name) ? $user->full_name : '' }}
@include('layouts.includes.user_menu')
@foreach($summary as $key => $data) @php if ($data['color']) { $color = $data['color']; } else { $color = '008000'; } @endphp
{{ $data['name'] }}
{{ $data['total_status'] }}
@endforeach
{!! $dataTable->table(['class' => 'table table-striped table-hover dt-responsive', 'width' => '100%', 'cellspacing' => '0']) !!}
@include('admin.task.details') @endsection @section('js') {!! $dataTable->scripts() !!} @include('admin.task.details_script') @endsection