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

{{ $product->name }} Videos

{{ $product->name }} Videos

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

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

@else
@foreach($videos as $video) @include('frontend.video.partials.thumbnail') @endforeach
@endif
@endsection