@extends('layouts.wrap')
@section('title', 'Ürünler')
@include('product::sidebar')
@section('_content')
Ürün Kategorileri
@if(Session::has('message'))
{{ Session::get('message') }}
@endif
@if($category->count() > 0)
| Başlık |
Üst Kategori |
@foreach($category as $p)
| {{ $p->title }} |
{{ $p->parent }} |
@endforeach
{{ $category->links() }}
@else
@endif
@stop