{{-- resources/views/admin/client-projects/index.blade.php --}} @extends('admin.layouts.admin') @section('title','Client Projects') @section('page-title','Client Projects') @section('admin-content')

{{ $projects->total() }} total projects

+ New Project
@forelse($projects as $p) @empty @endforelse
ProjectClientStatusProgressDeadlineActions
{{ Str::limit($p->title,36) }} {{ $p->client->display_name }} {{ ucfirst(str_replace('_',' ',$p->status)) }}
{{ $p->progress }}%
{{ $p->deadline?->format('d M Y') ?? '—' }}
No projects yet.
@if($projects->hasPages())
{{ $projects->links() }}
@endif @endsection