From 795dc9df00c735757a693d8e6dd4edd12d59fdc3 Mon Sep 17 00:00:00 2001 From: Bayu Widyasanyata Date: Mon, 3 Apr 2023 05:46:40 +0700 Subject: [PATCH] Add Button class (#179) use Orchid\Screen\Actions\Button; --- docs/en/docs/quickstart.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/en/docs/quickstart.md b/docs/en/docs/quickstart.md index 981fef5c7..60538c670 100644 --- a/docs/en/docs/quickstart.md +++ b/docs/en/docs/quickstart.md @@ -428,6 +428,8 @@ Our task application is almost complete. But, we have no way to delete our exist So, let's add a delete button to each row of our task listing... ```php +use Orchid\Screen\Actions\Button; + Layout::table('tasks', [ TD::make('name'),