Skip to content

Commit

Permalink
Update resource data field panel for zip #39
Browse files Browse the repository at this point in the history
  • Loading branch information
drewroberts committed Mar 18, 2021
1 parent 5a6aba0 commit 7f2390e
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/Nova/Zip.php
Original file line number Diff line number Diff line change
Expand Up @@ -58,10 +58,10 @@ public function fields(Request $request)

protected function dataFields(): array
{
return [
ID::make(),
Date::make('Created At')->exceptOnForms(),
Date::make('Updated At')->exceptOnForms(),
];
return array_merge(
parent::dataFields(),
$this->creatorDataFields(),
$this->updaterDataFields(),
);
}
}

0 comments on commit 7f2390e

Please sign in to comment.