@extends('layouts.wrap') @section('title', "Özgün Tarım - Ürünler") @section('_content')
    @foreach(DB::table('component_product_category')->where('parent_id',0)->get() as $cat)
  • {{ $cat->title }}

  • @foreach(DB::table('component_product_category')->where('parent_id',$cat->id)->get() as $catt)
  • {{ $catt->title }}

  • @endforeach @endforeach
@foreach(ProductCategory::all() as $cattt)
@foreach($cattt->product as $proc)

{{ $proc->title }}

Ürün Detayları
{{ $proc->description }}
@endforeach
@endforeach
@stop @section('foot_hook') @parent @stop