@extends('layouts.app') @section('content')
@if($noticias->count() === 0) No hay noticias por el momento @endif
Firmantes de hoy ({{ date('d/m/Y') }})
@foreach($firmantes as $firmante)
@if($firmante->nota) * @endif {{$firmante->firmante->nombres}} - {{$firmante->firmante->puesto}}
@endforeach
@foreach($otrosfirmantes as $firmante)
@if($firmante->nota) * @endif {{$firmante->firmante->nombres}} - {{$firmante->firmante->puesto}}
@endforeach
@if($firmantes->count() === 0)
No se asignaron firmantes para hoy
@endif
Cumpleaños de Hoy ({{ date('d/m/Y') }})
@foreach($cumpleanios as $cumple) {{$cumple['nombre'] }} @endforeach
Funcionarios Ausentes
@foreach($ausentes as $ausente)
{{ $ausente->funcionario->full_name }}
@endforeach
@endsection @push('pre-scripts') @endpush