2017 © Pedro Peláez
 

library wmenu

image

garcia/wmenu

  • Wednesday, February 25, 2015
  • by lordmacu
  • Repository
  • 2 Watchers
  • 16 Stars
  • 39 Installations
  • JavaScript
  • 0 Dependents
  • 0 Suggesters
  • 15 Forks
  • 2 Open issues
  • 1 Versions
  • 0 % Grown

The README.md

wmenu

laravel package menu like wordpress, (*1)

This is a menu that has the functionality of wordpress, and ease of creating editing and selection, some css and javascripts property was used wordpress., (*2)

It has a nestable menu and sortable., (*3)

This project has two versions of menu creator, (*4)

domain.com/menuw, (*5)

"require": {
        "laravel/framework": "4.2.*",
        "garcia/wmenu": "dev-master"
    }

    'providers' => array(
        'Garcia\Wmenu\WmenuServiceProvider',
    ),

php artisan asset:publish garcia/wmenu, (*6)

CREATE TABLE `menus` (
`id` int(11) NOT NULL,
  `name` varchar(255) NOT NULL,
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00'
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1;

CREATE TABLE `menu_items` (
`id` int(11) NOT NULL,
  `label` varchar(255) NOT NULL,
  `link` varchar(255) NOT NULL,
  `parent` varchar(255) NOT NULL DEFAULT '0',
  `sort` int(255) NOT NULL,
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
  `class` varchar(50) DEFAULT NULL,
  `menu` int(11) DEFAULT '1',
  `depth` int(11) NOT NULL DEFAULT '0'
) ENGINE=InnoDB AUTO_INCREMENT=280 DEFAULT CHARSET=latin1;

ScreenShot ScreenShot ScreenShot, (*7)

The Versions

25/02 2015

dev-master

9999999-dev

  Sources   Download

The Requires

 

by Cristian Garcia

wordpress laravel cms menu wordpress menu wmenu