@extends('admin.layouts.app') @section('title','CSR Projects') @section('breadcrumb') / CSR Management / Projects @endsection @section('content')
Manage CSR project lifecycle from draft to completion
| S.N. | Project | CSR Company | Category | Budget | Progress | Dates | Status | Actions |
|---|---|---|---|---|---|---|---|---|
| {{ ($projects->currentPage()-1)*$projects->perPage()+$i+1 }} |
{{ $project->project_title }}
{{ $project->project_code }}
@if($project->location)
{{ $project->location }}
@endif
|
{{ $project->csrCompany->company_name ?? '—' }} | @if($project->category) {{ $project->category->name }} @else — @endif |
@if($project->budget_allocation)
₹{{ number_format($project->budget_allocation) }}
Spent: ₹{{ number_format($project->total_spent) }}
@else — @endif
|
@if($project->budget_allocation)
{{ $project->budget_used_percent }}% used
@else No budget set @endif
|
@if($project->start_date)
{{ $project->start_date->format('d M Y') }}
@endif
@if($project->end_date)
{{ $project->end_date->format('d M Y') }}
@endif
|
||
|
No projects found @if(auth()->user()->hasPermission('projects.create')) Create First Project @endif |
||||||||