@extends('layouts.dashboard') @section('content')

DSR Report - {{ $dsr->user->name }} ({{ $dsr->created_at->format('Y-m-d') }})

@foreach ($dsrReports as $report)

Project Name: {{ $report->project->name_or_url ?? 'N/A' }}

Hours: {{ $report->hours }}

Work Details:

{{ $report->work_description }}

@if ($report->links)
Related Links:
{!! nl2br(e($report->links)) !!}
@endif @if ($report->helped_by || $report->help_description)
Helped By: {{ optional($report->helper)->name ?? 'N/A' }}
Help Description:

{{ $report->help_description }}

@endif @if ($report->help_rating)

Rating for the work: {{ $report->help_rating }}

@endif
@endforeach
← Back
@endsection