@extends('dashboardCollector._theme_dashboard') @section('content')
{{ ucfirst($currentMonth->translatedFormat('F')) }}
@if($schedule->isEmpty())

Você ainda não possuí agendamentos.

@else @foreach($schedule as $item)
@if($item->schedule_date < date("Y-m-d"))
@else
@endif
Data da coleta
{{date("d/m/Y", strtotime($item->schedule_date))}}
@if($item->schedule_status == "0") Situação: Não iniciado @endif @if($item->schedule_status == "1") Situação: Em andamento @endif @if($item->schedule_status == "2") Situação: Concluído @endif
@endforeach @endif
@endsection @section('customJS') @endsection