@include('partials.styles') @include('partials.nav')

Daily Log

Date
{{ $log->log_date }}
Site
{{ $log->site?->name ?? '—' }}
Crew
{{ $log->crew?->name ?? '—' }}
Weather
{{ $log->weather['notes'] ?? '—' }}
Summary
{{ $log->summary ?? '—' }}
Additional People
@if (! empty($log->tags)) @foreach ($log->tags as $tag) {{ $tag }} @endforeach @else — @endif
@include('partials.attachments', [ 'attachments' => $log->attachments, 'deletePermission' => 'daily-logs.update', ]) Back