From 696660afa47e6b8defe3cd5e253fd8c89481f6d3 Mon Sep 17 00:00:00 2001 From: Chris Tanner <55005098+c-tanner@users.noreply.github.com> Date: Sun, 29 Sep 2024 08:52:18 -0400 Subject: [PATCH] Update README.md --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 454b76a..82c0271 100644 --- a/README.md +++ b/README.md @@ -112,6 +112,8 @@ class Task { However, let's say that both classes have a property, `is_complete`, which defaults to `false`, and we want to automatically mark a `Task` complete only when all related `Subtasks` are also complete: +![example reverse sync diagram](https://github.com/c-tanner/laravel-deep-sync/blob/main/doc/relationship-example-3.png) + ```php #[ObservedBy([DeepSync::class])] class Task extends Model