Download the PHP package sukohi/menco without Composer
On this page you can find all versions of the php package sukohi/menco. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Vendor sukohi
Package menco
Short Description A PHP package mainly developed for Laravel to generate postLink like cakePHP has.
License MIT
Package menco
Short Description A PHP package mainly developed for Laravel to generate postLink like cakePHP has.
License MIT
Please rate this library. Is it a good library?
Informations about the package menco
Menco
A PHP package mainly developed for Laravel to generate "postLink" like cakePHP has.
(This is for Laravel 5+. For Laravel 4.2)
Installation
Add this package name in composer.json
"require": {
"sukohi/menco": "2.*"
}
Execute composer command.
composer update
Register the service provider in app.php
'providers' => [
...Others...,
Sukohi\Menco\MencoServiceProvider::class,
]
Also alias
'aliases' => [
...Others...,
'Menco' => Sukohi\Menco\Facades\Menco::class
]
Usage
$extra_data = [
'data' => 'data',
'data2' => 'data2',
'data3' => 'data3'
];
echo \Menco::get([
'id' => 'your-id',
'label' => 'Your Label',
'url' => \URL::to('/'),
'class' => 'your-class-name',
'message' => 'Are you sure?',
'title' => 'Your Title', // You can add properties you want.
], $extra_data);
All of the parameters are Optional.
License
This package is licensed under the MIT License.
Copyright 2014 Sukohi Kuhoh
All versions of menco with dependencies
PHP Build Version
Package Version
Requires
laravel/framework Version
~5.0
The package sukohi/menco contains the following files
Loading the files please wait ....