@extends('layouts.admin') @section('content')
{{ $projectsAll }}
{{ $pendingProjects }}
{{ $completedProjects }}
{{ $upload_status }}
| # | Project Name | User Name | Status | Files | Created At | Actions |
|---|---|---|---|---|---|---|
| {{ $loop->iteration }} | {{ $item->name }} |
{{ $item->user->name ?? 'N/A' }} {{ $item->user->email ?? 'N/A' }} |
@if($item->status == 'pending') Pending @elseif($item->status == 'completed') Completed @else Failed @endif | @if ($item->upload_status == 1) Yes @else No @endif | {{ $item->created_at->format('d M, Y') }} |
|