@extends('templates.pdf.template') @php $firstItem = count($data) > 0 ? $data[0] : null; $committee = $firstItem ? $firstItem->committee : null; $title = null; if ($committee) $title = $committee->committee_cod; @endphp @section('title', $title ? $title.' - Projetos' : 'Comitês Brasileiros - Projetos') @section('content')

Data: {{ now()->format( 'd/m/Y' ) }}

Quantidade de projetos: {{ count($data) }}

@foreach( $data as $project ) @endforeach

Código

Título

{{ $project->norm_cod }}

{{ $project->title }}

@endsection