@extends('layouts.app') @section('page-title', 'Projects') @section('page-heading', 'All Projects') @section('breadcrumbs')
| Name | Description | Budget | Start Date | End Date | Status | Actions |
|---|---|---|---|---|---|---|
| {{ $project->name }} @if(isset($currentActiveProject) && $currentActiveProject && $currentActiveProject->id == $project->id) Active @endif | {{ Str::limit($project->description, 60) }} | {{ $project->budget ? number_format($project->budget) : '-' }} | {{ $project->start_date->format('d M Y') }} | {{ $project->end_date?->format('d M Y') ?? '-' }} | {{ $project->is_active ? 'Active' : 'Inactive' }} | |
| @lang('No projects found.') | ||||||