@extends('layouts.master') @section('content')

{{$greeting}}, {{session('staff')->title}} {{session('staff')->firstname}} {{session('staff')->lastname}}

{{date('l, jS F Y')}}

Assigned Projects

@foreach($projects as $project)

{{$project->title}}

{!! $project->description !!}

Project Leader :
Team :
    @foreach($project->team() as $member)
  • @endforeach
@endforeach
Daily Reports
@if(count($statistics_card['pending'])) @endif
    @foreach($statistics_card['reports'] as $report)
  • Project: {{$report->project()->title}}

    Goal: {{$report->goal()->subject}}

    {!! $report->report !!}
    {{date("F j, Y", strtotime($report->created_at))}}
  • @endforeach
Statistics

{{$statistics_card['goals']}}

Total Goals

{{count($statistics_card['pending'])}}

Pending Goals

{{count($statistics_card['reports'])}}

Reports Submitted

@if(count($statistics_card['pending']))

Goals Yet To Be Completed

@foreach($statistics_card['pending'] as $goal)
@endforeach @else

You have no pending goals

@endif
@endsection @section('style') @endsection @section('script') @endsection