Skip to content

Commit

Permalink
Merge branch '10.5'
Browse files Browse the repository at this point in the history
  • Loading branch information
crynobone committed Apr 30, 2024
2 parents 7484d16 + 4f2f8fd commit 0d9ead7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions app/Nova/Notification.php
Original file line number Diff line number Diff line change
Expand Up @@ -119,8 +119,8 @@ public function fields(NovaRequest $request): array
DateTime::make('Read At'),
]),
Panel::make('Historical Details', [
DateTime::make('Created At'),
DateTime::make('Updated At'),
DateTime::make('Created At')->readonly(),
DateTime::make('Updated At')->readonly(),
]),
]),
];
Expand Down
4 changes: 2 additions & 2 deletions app/Nova/Subscriber.php
Original file line number Diff line number Diff line change
Expand Up @@ -104,8 +104,8 @@ public function fields(NovaRequest $request): array

]),
Panel::make('Histories', [
DateTime::make('Created At')->nullable(),
DateTime::make('Updated At')->nullable(),
DateTime::make('Created At')->nullable()->readonly(),
DateTime::make('Updated At')->nullable()->readonly(),
DateTime::make('Email Verified At')->nullable(),
]),
]),
Expand Down

0 comments on commit 0d9ead7

Please sign in to comment.