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

Dashboard

{{-- Em Planeamento --}}
Em planeamento {{ $CompanyProject->where('order_project', 1)->count() }} Em planeamento de 2023
@foreach ($CompanyProject as $project) @if ($project->order_project == 1)
{{ $project->company_project_description }}
@endif @endforeach
{{-- Preparadas --}}
Preparadas {{ $CompanyProject->where('order_project', 2)->count() }} Aguardam o início da obra.
@foreach ($CompanyProject as $project) @if ($project->order_project == 2)
{{ $project->company_project_description }}
@endif @endforeach
{{-- Execucao --}}
Em execução {{ $CompanyProject->where('order_project', 3)->count() }} Obras em curso.
@foreach ($CompanyProject as $project) @if ($project->order_project == 3)
{{ $project->company_project_description }}
@endif @endforeach
{{-- Concluidas --}}
Concluídas {{ $CompanyProject->where('order_project', 4)->count() }} Últimas obras de 2023
@foreach ($CompanyProject as $project) @if ($project->order_project == 4) @endif @endforeach
{{-- ./row --}}
{{-- /.container-fluid --}}
@endsection