@extends('backend.layouts.main') @section('title', 'MLI ATS | Weekly Status Report') @section('content')
@include('backend.share.title', ['title' => 'Manage Weekly Status Report'])

Activity Status

@if ($statusReports->count()) @foreach ($statusReports as $index => $statusReport) @endforeach @else @endif
# Week Proposed New Planning Ready Active Analysis Audit Approved Total Closed
{{ $index + $statusReports->firstItem() }}
{{ date('m/d/Y', strtotime($statusReport->week)) }}
{{ $statusReport->proposed }}
{{ $statusReport->new }}
{{ $statusReport->planning }}
{{ $statusReport->ready }}
{{ $statusReport->active }}
{{ $statusReport->analysis }}
{{ $statusReport->audit }}
{{ $statusReport->approved }}
{{ $statusReport->total }}
{{ $statusReport->closed }}
No Data Found
@include('backend.share.pagination', ['data' => $statusReports])
@endsection