@extends('frontend.layouts.master') @section('title', $product->name . ' Photos') @section('content')

{{ $product->name }} Photos

{{ $product->name }} Photos

@if($photos->count() == 0)

There are no photos for this {{ strtolower(str_singular($product->category->name)) }} yet.
To share your photos please use the photo upload form found in the photo menu above.

@else
@foreach($photos as $photo) @include('frontend.photo.partials.thumbnail') @endforeach
{{ $photos->links('frontend.layouts.partials.pagination') }} @endif
@endsection