@extends('layouts.app') @section('title','Daily Report') @section('page-title','Daily Report Detail') @section('content')
Back @if($dailyReport->status==='submitted')
@csrf @method('PATCH')
@endif
{{ $dailyReport->project->name ?? '-' }} — {{ $dailyReport->date->format('l, d F Y') }}
{{ $dailyReport->status }}
Workers Present
{{ $dailyReport->workers_present }}
Weather
{{ $dailyReport->weather ?? '-' }}
Submitted By
{{ $dailyReport->submitter->name ?? '-' }}
Activities Completed
{{ $dailyReport->activities_completed }}
@if($dailyReport->materials_used)
Materials Used
{{ $dailyReport->materials_used }}
@endif @if($dailyReport->challenges)
Challenges
{{ $dailyReport->challenges }}
@endif @if($dailyReport->next_day_plan)
Tomorrow's Plan
{{ $dailyReport->next_day_plan }}
@endif @if($dailyReport->visitors)
Visitors
{{ $dailyReport->visitors }}
@endif
@endsection