@extends('layouts.app') @section('title', 'Admin - Projects') @section('breadcrumb') Admin Projects @endsection @section('content') @if(session('success'))
{{ session('success') }}
@endif
@forelse($projects as $project) @empty @endforelse
Project Owner Status Tasks Created Actions
{{ $project->owner->name ?? '—' }} @if($project->is_archived) Archived @else {{ ucfirst(str_replace('_', ' ', $project->status)) }} @endif {{ $project->tasks_count }} {{ $project->created_at->format('M j, Y') }}
@can('archive_project')
@csrf @method('PATCH')
@endcan @can('delete_project')
@csrf @method('DELETE')
@endcan
No projects found.
@if($projects->hasPages()) @endif @endsection