Share your photos with our community.
{{ $category->name }} {{ $category->description }}
|
{{ $category->photos->where('status_id', 1)->count() }} Photos
|
@if( $category->photos->where('status_id', 1)->count() == 0 )
No Photos | @else
@foreach($category->photos->where('status_id', 1)->sortByDesc('created_at')->take(1) as $photo)
{{ str_limit($photo->title, 20) }} {{ $photo->created_at->diffForHumans() }}
@endforeach
|
@endif
There are no photos in this category yet.
To share your photos please click on upload photo in the right hand navigation.