@extends('admin.dashboard.layouts.app') @section('title', panel_setting_title("Menü")) @push('style-libraries') @endpush @section('content')
@forelse ($menus as $menu) @if ($menu->url != '') @else @endif @if ($menu->children->isNotEmpty()) @forelse ($menu->children as $child) @if ($child->url != '') @else @endif @if ($child->children->isNotEmpty()) @forelse ($child->children as $subChild) @if ($subChild->url != '') @else @endif @empty @endforelse @endif @empty @endforelse @endif @empty @endforelse
ID Menü Adı İşlemler
{{ $menu->id }}url }}' target='_blank'>{{ $menu->name }}{{ $menu->name }}
{{ $child->id }}url }}' target='_blank'>--- {{ $menu->name }} > {{ $child->name }}--- {{ $menu->name }} > {{ $child->name }}
{{ $subChild->id }}url }}' target='_blank'>------ {{ $menu->name }} > {{ $child->name }} > {{ $subChild->name }} ------ {{ $menu->name }} > {{ $child->name }} > {{ $subChild->name }}
@include('admin.components.modals.add-menu', ['permissions' => $permissions]) @endsection @push('script-libraries') @endpush @push('scripts') @endpush