Code Monkey home page Code Monkey logo

Comments (2)

kaidesu avatar kaidesu commented on August 22, 2024

I would take a step back and simplify the code, slowly making additions to it to find out what the issue is.

First step is to simply load your items from the database and add them to a menu - don't worry about the options for now. Once you've got that working, then move on to implementing the menu options.

There's a few ways you can go about things. Maybe try and simply create your menu instance (with no items), and then add your items to it:

$menu = Menu::make('backend', function($menu) {
    $menu->add('Dashboard', 'admin');
});

$items = NavigationAdmin::all();

foreach ($items as $item) {
    $menu->add($item->title, '#');
}

Or this should even work:

$items = NavigationAdmin::all();

Menu::make('backend', function($menu) use ($items) {
    foreach ($items as $item) {
        $menu->add($item->title, '#');
    }
});

from menus.

twitnic avatar twitnic commented on August 22, 2024

Hey,

that works, but when I gerate Submenus it say: Call to a member function add() on a non-object

My File:
<?php

namespace App\Http\Middleware;

use Closure;
use Illuminate\Support\Facades\DB;
use Menu;

    class MenuMiddleware
    {
    /**
     * Run the request filter.
     *
     * @param  \Illuminate\Http\Request  $request
     * @param  \Closure                  $next
     * @return mixed
     */
    public function handle($request, Closure $next)
    {
        $stops = DB::table('pictures')
            ->leftJoin('gallery', 'pictures.gallery_id', '=', 'gallery.id')
            ->select(DB::raw('pictures.gallery_id, gallery.name, COUNT(DISTINCT pictures.slide) as AnzahlSlides'))
            ->groupBy('pictures.gallery_id')
        ->get();

    Menu::make('backend', function($menu) use ($stops) {

        foreach ($stops as $stop) {

            $menu
                ->add($stop->name, ['route' => ['getGalleryVenue', $stop->gallery_id]])
                ->active('admin/backend/gallery/' . $stop->gallery_id)
                ->icon('fa-picture-o');

            $lowerName = strtolower($stop->name);

            for($i = 1; $i <= $stop->AnzahlSlides; $i++) {
                $menu->$lowerName->add($i, ['route' => ['getGallerySlide', $stop->gallery_id, $i]]);
                }
            }
        });

        return $next($request);
    }
}

Could anyone maybe help?
Thanks

from menus.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.