@extends('layouts.wrap') @section('title', 'Ürünler') @include('product::sidebar') @section('_content')

Ürünler Komponenti

@if(Session::has('message'))
{{ Session::get('message') }}
@endif @if($product->count() > 0) @foreach($product as $p) @endforeach
Başlık Kategori Eklenme Tarihi
{{ $p->title }} {{ $p->category->title }} {{ $p->created_at }}
{{ $product->links() }} @else

Hiç Ürün yok.

Buradan ekleyin
@endif
@stop