@extends('backend.layouts.app') @section('title') Menus @endsection @section('headerWithButton')
| S.N | Parent | Name | Display Order | Is Published? | Is Featured Navigation? | Actions |
|---|---|---|---|---|---|---|
| {{ $parentCount }} | - | {!! $parent->name !!} | {{ $parent->display_order }} |
|
{{ $parent->is_featured_navigation == true ? 'Yes' : 'No' }} |
|
| {{ $parentCount }} | {!! $child1->parent->name !!} | {!! $child1->name !!} | {{ $child1->display_order }} |
|
{{ $child1->is_featured_navigation == true ? 'Yes' : 'No' }} |
|
| {{ $parentCount }} | {!! $child2->parent->name !!} | {!! $child2->name !!} | {{ $child2->display_order }} |
|
{{ $child2->is_featured_navigation == true ? 'Yes' : 'No' }} |
|