@extends('admin.base-admin') @section('styles') @endsection @section('content')

Suas tasks

@if (count($task) > 0) @foreach ($task as $t)
@if ( $t['status'] == 1)

{{$t['titulo']}}

@else

{{$t['titulo']}}

@endif
@endforeach @else
Sem tarefas
@endif

Interno TI

@foreach ($task_grupo as $t)
{{-- --}}
#{{$t['id']}} - {{$t['name']}}

@php echo html_entity_decode($t['content']); @endphp

@endforeach

Chamados pendentes

@if (count($task_pen) > 0) @foreach ($task_pen as $t)
Chamado pendente - ID #{{$t['id']}}
@endforeach @else
Sem chamados pendentes
@endif

Recados

Sem recados
@endsection