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

Dashboard

{{-- Execucao --}}
{{ __('messages.dashboard.on_going.description') }} {{ $CompanyProject->where('order_project', 3)->count() }} --}} {{ __('messages.dashboard.on_going.text') }}
@foreach ($allProjectsClient as $project) @if ($project->order_project == 3)
{{ $project->company_project_description }}
@endif @endforeach
{{-- ./Execucao --}} {{-- Concluidas --}}
{{ __('messages.dashboard.finished.description') }} {{ $CompanyProject->where('order_project', 4)->count() }} --}} {{ __('messages.dashboard.finished.text') }}
@foreach ($allProjectsClient as $project) @if ($project->order_project == 4)
{{ $project->company_project_description }}
@endif @endforeach
{{-- ./Concluidas --}}
@endsection