[BUG] - Create the fields
ryanzzeng opened this issue · 1 comments
ryanzzeng commented
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'),
KasparRosin commented
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'),
]
}