@extends('Templates/templateAdmin') @section('Main-content')

Dashboard

{{-- Em Planeamento --}}
{{ __('messages.dashboard.planning.description') }} {{ $CompanyProject->where('order_project', 1)->count() }} {{ __('messages.dashboard.planning.text') }} {{ now()->year }}.
@foreach ($CompanyProject as $project) @if ($project->order_project == 1)
{{ $project->company_project_description }}
@endif @endforeach
{{-- Preparadas --}}
{{ __('messages.dashboard.prepared.description') }} {{ $CompanyProject->where('order_project', 2)->count() }} {{ __('messages.dashboard.prepared.text') }}
@foreach ($CompanyProject as $project) @if ($project->order_project == 2)
{{ $project->company_project_description }}
@endif @endforeach
{{-- Execucao --}}
{{ __('messages.dashboard.on_going.description') }} {{ $CompanyProject->where('order_project', 3)->count() }} {{ __('messages.dashboard.on_going.text') }}
@foreach ($CompanyProject as $project) @if ($project->order_project == 3)
{{ $project->company_project_description }}
@endif @endforeach
{{-- Concluidas --}}
{{ __('messages.dashboard.finished.description') }} {{ $CompanyProject->where('order_project', 4)->count() }} {{ __('messages.dashboard.finished.text') }} {{ now()->year }}.
@foreach ($CompanyProject as $project) @if ($project->order_project == 4)
{{ $project->company_project_description }}
@endif @endforeach
{{-- ./row --}}
{{-- /.container-fluid --}}
@endsection