Title | {{ $photo->title }} |
Rating | {{ $photo->rating }} |
Comments | {{ $photo->comments->where('status_id', 1)->count() }} |
Views | {{ $photo->views->count() }} |
Category | {{ $photo->category->name }} |
Related | @foreach($photo->products->sortBy('created_at') as $product) {{ $loop->first ? '' : ', ' }}{{ $product->name }} @endforeach |
Taken | @if(!empty($photo->taken_at)) {{ $photo->taken_at->diffForHumans() }} @endif |
Uploaded | {{ $photo->created_at->diffForHumans() }} |
Source | {{ $photo->source_name }} |
Location | {{ $photo->location }} |
Last Edited | {{ $photo->updated_at->diffForHumans() }} |
Uploaded By | {{ $photo->user->name }} |