SUKOHI / Menco by Sukohi

A PHP package mainly developed for Laravel to generate postLink like cakePHP has.
48
0
2
Package Data
Maintainer Username: Sukohi
Maintainer Contact: capilano.sukohi@gmail.com (Sukohi)
Package Create Date: 2014-09-18
Package Last Update: 2017-01-31
Language: PHP
License: MIT
Last Refreshed: 2024-05-15 15:02:14
Package Statistics
Total Downloads: 48
Monthly Downloads: 0
Daily Downloads: 0
Total Stars: 0
Total Watchers: 2
Total Forks: 0
Total Open Issues: 0

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