@extends('front.layouts.main')
@section('content')
@if(count($data) > 0)
CJ'S GALLERY
@foreach($data as $product)
{{ Form::open(['route'=>['gallery.detail'],'method'=>'POST']) }}
{{ Form::close() }}
@endforeach
@else
PRODUCTS NOT FOUND
@endif
@endsection
@section('js')
@endsection