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

Project Monthly Reports

@if (auth()->user()->hasRole('Employee')) @else @endif
@forelse($reports as $index => $report) @empty @endforelse
# Report for Month Details Added By Added On Actions
{{ $index + 1 }} {{ \Carbon\Carbon::parse($report->report_for_month)->format('d M Y') }} {{ $report->details }} {{ $report->addedBy->name ?? '-' }} {{ $report->created_at->format('d M Y') }}
No reports found.
{{ $reports->withQueryString()->links() }}
@endsection @section('scripts') @endsection