outl1ne/nova-drafts

[BUG] - Create the fields

ryanzzeng opened this issue · 1 comments

Describe the bug
Where to add "Create the fields" code listing in the readme.doc?

UnpublishButton::make('Unpublish'),
DraftButton::make('Draft'),
PublishedField::make('State', 'published'),

Hey!

The fields should be put inside the fields function in your model resource file.

public function fields(Request $request)
{
    return [
      UnpublishButton::make('Unpublish'),
      DraftButton::make('Draft'),
      PublishedField::make('State', 'published'),
   ]
}

Nova documentation about defining fields