From 96e6118821e1607ad50e76bfb07b46baa5927793 Mon Sep 17 00:00:00 2001
From: Supan Adit Pratama <account@supanadit.com>
Date: Thu, 13 Mar 2025 15:52:07 +0000
Subject: [PATCH] feat: dependency gantt sample

---
 resources/views/timeline.blade.php | 9 +++++++++
 1 file changed, 9 insertions(+)

diff --git a/resources/views/timeline.blade.php b/resources/views/timeline.blade.php
index c4a0c57..ed24eb5 100644
--- a/resources/views/timeline.blade.php
+++ b/resources/views/timeline.blade.php
@@ -38,12 +38,21 @@
                 end: '2025-03-16',
                 progress: 20
             },
+            {
+                id: '2',
+                name: 'Redesign website',
+                start: '2025-03-03',
+                end: '2025-03-04',
+                progress: 20,
+                dependencies: '1'
+            }
         ];
         let gantt = new Gantt("#gantt", tasks, {
             bar_height: 16,
             column_width: 30,
             container_height: 670,
             view_mode_select: true,
+            readonly: true,
         });
     </script>
 @endsection