@extends('admin.layouts.app') @section('title', __('admin.projects.title')) @section('content')
| {{ __('admin.projects.title_col') }} | {{ __('common.table.client') }} | {{ __('common.table.status') }} | {{ __('admin.projects.progress') }} | {{ __('common.table.due_date') }} | {{ __('common.table.actions') }} |
|---|---|---|---|---|---|
|
{{ $project->title }}
@if($project->description) {{ Str::limit($project->description,60) }} @endif
|
{{ $project->client?->full_name ?? 'N/A' }} | {{ ucfirst(str_replace('_',' ',$project->status)) }} |
|
{{ $project->due_date ? \Carbon\Carbon::parse($project->due_date)->format('d M Y') : '-' }} | |
| {{ __('admin.projects.no_projects') }} | |||||