From a1c37cc808bbc604b2805563df62475727f3581f Mon Sep 17 00:00:00 2001 From: Stefano Novelli Date: Mon, 22 Jan 2024 12:04:12 +0100 Subject: [PATCH 1/3] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index b3e7c9d..3ea7fcf 100644 --- a/README.md +++ b/README.md @@ -73,7 +73,7 @@ Then, in your Nova resource, you can add the field: return [ // ... - NovaBusyResourceField::make('Busy')->withMeta([ + NovaBusyResourceField::make('')->withMeta([ 'saveEvery' => 30000 // In milliseconds ]), From 94e14b23ed6ec50d51e92e315697c778890f3211 Mon Sep 17 00:00:00 2001 From: Stefano Novelli Date: Mon, 22 Jan 2024 16:41:08 +0100 Subject: [PATCH 2/3] Update README.md --- README.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/README.md b/README.md index 3ea7fcf..34b2e2c 100644 --- a/README.md +++ b/README.md @@ -42,6 +42,11 @@ You need to publish the migration file: php artisan vendor:publish --tag=nova-busy-resource-field-migrations ``` +Remember to launch the migrations: +```bash + php artisan migrate +``` + Also, you can publish the config file: ```bash From 2153f3ca552f5dd72f771ab21cdced07bbd5db00 Mon Sep 17 00:00:00 2001 From: Stefano Novelli Date: Mon, 22 Jan 2024 16:41:32 +0100 Subject: [PATCH 3/3] Update README.md --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 34b2e2c..2c2e5b6 100644 --- a/README.md +++ b/README.md @@ -39,18 +39,18 @@ composer require the-3labs-team/nova-busy-resource-field You need to publish the migration file: ```bash - php artisan vendor:publish --tag=nova-busy-resource-field-migrations +php artisan vendor:publish --tag=nova-busy-resource-field-migrations ``` Remember to launch the migrations: ```bash - php artisan migrate +php artisan migrate ``` Also, you can publish the config file: ```bash - php artisan vendor:publish --tag=nova-busy-resource-field-config +php artisan vendor:publish --tag=nova-busy-resource-field-config ``` ## Usage