Skip to content

Commit

Permalink
fix: show published date on collection index
Browse files Browse the repository at this point in the history
  • Loading branch information
FrantisekMichalSebestyen committed Aug 24, 2023
1 parent 48a6951 commit 635652e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ All notable changes to this project will be documented in this file[^1].

### Changed
- behaviour for /api/v1/items/aggregations so that facet doesn't filter itself
- display published date on collection index

## [2.78.0] - 2023-07-21
### Added
Expand Down
2 changes: 1 addition & 1 deletion resources/views/frontend/collection/index.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@
</div>
<div class="collection-meta grey">
{{-- {!! $collection->author !!} &nbsp;&middot;&nbsp; --}}
{!! $collection->created_at->format('d. m. Y') !!} &nbsp;&middot;&nbsp;
{!! $collection->published_at->format('d. m. Y') !!} &nbsp;&middot;&nbsp;
{!! $collection->user->name !!} &nbsp;&middot;&nbsp;
{{ $collection->items_count }} {{ trans('kolekcie.collections_artworks') }}
</div>
Expand Down

0 comments on commit 635652e

Please sign in to comment.