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

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

New Project
@forelse($projects as $p) @empty @endforelse
Project Client Category Featured Status Completed Actions
{{ Str::limit($p->title, 36) }}
{{ Str::limit($p->summary, 50) }}
{{ $p->client ?? '—' }} {{ ucfirst($p->category) }} @if($p->featured) Featured @else @endif {{ ucfirst($p->status) }} {{ $p->completed_at?->format('M Y') ?? '—' }}
Edit @if($p->status === 'published') View @endif
@csrf @method('DELETE')
No projects yet. Add your first project →
@if($projects->hasPages())
{{ $projects->links() }}
@endif @endsection