@extends('tracker::layouts.master') @section('title','Projects') @section('content') @include('tracker::components.partials.page_header',['title'=>'Projects','actionRoute'=>route('tracker.projects.create'),'actionLabel'=>'New Project'])
@forelse($projects as $p) @empty @endforelse
NameKeyStatusIssues
{{ $p->name }} {{ $p->key }} {{ ucfirst($p->status) }} {{ $p->issues_count }} Edit
@csrf @method('DELETE')
No projects yet. Create one.
@endsection