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

Individual Report

Filter
@php $sl=0; @endphp @forEach($projects as $pro) @php switch($pro['projectStatus']){ case"Pending": $text_color="yellow"; break; case"New": $text_color="blue"; break; case"Completed": $text_color="blue"; break; case"Rejected": $text_color="red"; break; case"In Progress": $text_color="orange"; break; } @endphp @endforeach
ID Project ID Project Name SchoolName District BRC LSGD Task Name Task Status Voucher Amt Assigned Date Start Date End Date User Type User Name User Contact No User Email
{{ ++$sl }} {{ $pro['projectId'] }} {{ $pro['projectName'] }} {{ $pro['school_name'] }} {{ $pro['district'] }} {{ $pro['brc'] }} {{ $pro['panchayat'] }} {{ $pro['task_name'] }} {{ $pro['task_status'] }} {{ $pro['voucher_amt']}} {{date('d/m/Y',strtotime($pro['assigned_date'])) }} {{date('d/m/Y',strtotime($pro['start_date'])) }} {{date('d/m/Y',strtotime($pro['end_date'])) }} {{ $pro['user_type'] }} {{ $pro['user_name'] }} {{ $pro['user_contact'] }} {{ $pro['user_email'] }}
@endsection