@extends('titan::layouts.admin') @section('content')

List All Product Categories

@include('titan::admin.partials.info') @include('titan::admin.partials.toolbar', ['order' => true]) @foreach ($items as $item) @endforeach
Product Category Url Parent Action
{{ $item->name }} {!! $item->url !!} {{ ($item->parent)? $item->parent->name : '-' }} {!! action_row($selectedNavigation->url, $item->id, $item->name, ['edit', 'delete']) !!}
@endsection