@extends('layouts.jira') @section('content')

Project Drawings

Manage and present your ideas visually for {{ $project->name }}

New Drawing
@if($drawings->isEmpty())

No drawings yet

Create visual presentations, sketches, or flowcharts directly in your project.

Start your first drawing
@else
@foreach($drawings as $drawing)

{{ $drawing->title }}

Edited {{ $drawing->updated_at->diffForHumans() }}

{{ $drawing->author->name }}
@endforeach
@endif
@endsection