2017 © Pedro Peláez
 

library widgets

A powerful alternative to view composers. Asynchronous widgets, reloadable widgets, console generator, caching - everything you can think of.

image

artisancms/widgets

A powerful alternative to view composers. Asynchronous widgets, reloadable widgets, console generator, caching - everything you can think of.

  • Saturday, October 8, 2016
  • by ahuggins
  • Repository
  • 1 Watchers
  • 1 Stars
  • 27 Installations
  • PHP
  • 1 Dependents
  • 0 Suggesters
  • 68 Forks
  • 0 Open issues
  • 57 Versions
  • 0 % Grown

The README.md

Latest Stable Version Total Downloads Build Status Scrutinizer Quality Score, (*1)

https://img.shields.io/github/issues/artisancms/widgets.svg, (*2)

Widgets for Laravel

A powerful alternative to view composers. Asynchronous widgets, reloadable widgets, console generator, caching - everything you can think of., (*3)

Installation

1) Run composer require artisancms/widgets, (*4)

2) Register a service provider in the app.php configuration file, (*5)

 [
    ...
    ArtisanCMS\Widgets\ServiceProvider::class,
],
?>

3) Add some facades here too. If you prefer custom blade directives to facades you can skip this step., (*6)

 [
    ...
    'Widget'       => ArtisanCMS\Widgets\Facade::class,
    'AsyncWidget'  => ArtisanCMS\Widgets\AsyncFacade::class,
],
?>

Usage

Let's consider we want to make a list of recent news and reuse it in several views., (*7)

First of all we can create a Widget class using the artisan command provided by the package., (*8)

php artisan make:widget RecentNews

This command generates two files:, (*9)

1) resources/views/widgets/recent_news.blade.php is an empty view., (*10)

Add "--plain" option if you do not need a view., (*11)

2) app/Widgets/RecentNews is a widget class., (*12)

<?php

namespace App\Widgets;

use ArtisanCMS\Widgets\AbstractWidget;

class RecentNews extends AbstractWidget
{
    /**
     * The configuration array.
     *
     * @var array
     */
    protected $config = [];

    /**
     * Treat this method as a controller action.
     * Return view() or other content to display.
     */
    public function run()
    {
        //

        return view("widgets.recent_news", [
            'config' => $this->config,
        ]);
    }
}

Note: You can use your own stubs if you need. Publish config file to change paths., (*13)

The last step is to call the widget. You've actually got several ways to do so., (*14)

@widget('recentNews')

or, (*15)

{{ Widget::run('recentNews') }}

or even, (*16)

{{ Widget::recentNews() }}

There is no real difference between them. The choice is up to you., (*17)

Note: For Laravel 5.0.0 - 5.1.3 you have to use {!! !!} tags instead of {{ }}, (*18)

Passing variables to widget

Via config array

Let's carry on with the "recent news" example., (*19)

Imagine that we usually need to show five news, but in some views we need to show ten. This can be easily achieved like that:, (*20)

class RecentNews extends AbstractWidget {
    ...
    protected $config = [
        'count' => 5
    ];
    ...
}

...
@widget('recentNews') // shows 5
@widget('recentNews', ['count' => 10]) // shows 10

['count' => 10] is a config array that can be accessed by $this->config., (*21)

Config array is available in every widget method so you can use it to configure placeholder and container too (see below), (*22)

Note: Config fields that are not specified when you call a widget aren't overridden:, (*23)

class RecentNews extends AbstractWidget {
    ...
    protected $config = [
        'count' => 5,
        'foo'   => 'bar'
    ];

    ...
}

@widget('recentNews', ['count' => 10]) // $this->config['foo'] is still 'bar'

Note 2: You may want (but you probably don't) to create your own BaseWidget and inherit from it. That's fine. The only edge case is merging config defaults from a parent and a child. In this case do the following:, (*24)

1) Do not add protected $config = [...] line to a child., (*25)

2) Add defaults like that instead:, (*26)

    public function __construct(array $config = [])
    {
        $this->addConfigDefaults([
            'child_key' => 'bar'
        ]);

        parent::__construct($config);
    }

Directly

You can also choose to pass additional parameters to run() method directly., (*27)

@widget('recentNews', ['count' => 10], 'date', 'asc')
...
public function run($sortBy, $sortOrder) { }
...

run() method is resolved via Service Container, so method injection is also available here., (*28)

Namespaces

By default the package tries to find your widget in the App\Widgets namespace., (*29)

You can override this by publishing package config (php artisan vendor:publish --provider="ArtisanCMS\Widgets\ServiceProvider") and setting default_namespace property., (*30)

Although using the default namespace is very convenient, in some cases you may wish to have more flexibility. For example, if you've got dozens of widgets it makes sense to group them in namespaced folders., (*31)

No problem, you have several ways to call those widgets:, (*32)

1) Pass a full widget name from the default_namespace (basically App\Widgets) to the run method., (*33)

@widget('News\RecentNews', $config)

2) Use dot notation., (*34)

@widget('news.recentNews', $config)

3) FQCN is also an option., (*35)

@widget('\App\Http\Some\Namespace\Widget', $config)

Asynchronous widgets

In some situations it can be very beneficial to load widget content with AJAX., (*36)

Fortunately, this can be achieved very easily! All you need to do is to change facade or blade directive - Widget:: => AsyncWidget::, @widget => @asyncWidget, (*37)

Note: Widget params are encrypted and sent via ajax call. Expect them to be json_encoded and json_decoded afterwards., (*38)

Note: Since version 3.1 you no longer need jquery to make ajax calls. However you can set use_jquery_for_ajax_calls to true in the config file if you want to., (*39)

By default nothing is shown until ajax call is finished., (*40)

This can be customized by adding a placeholder() method to the widget class., (*41)

public function placeholder()
{
    return "Loading...";
}

Side note: If you need to do smth with the routes package uses to load async widgets (e.g. you run app in a subfolder http://site.com/app/) you need to copy ArtisanCMS\Widgets\ServiceProvider to your app, modify it according to your needs and register it in Laravel instead of the former one., (*42)

Reloadable widgets

You can go even further and automatically reload widget every N seconds., (*43)

Just set the $reloadTimeout property of the widget class and you are done., (*44)

class RecentNews extends AbstractWidget
{
    /**
     * The number of seconds before each reload.
     *
     * @var int|float
     */
    public $reloadTimeout = 10;
}

Both sync and async widgets can become reloadable., (*45)

You should use this feature with care, because it can easily spam your app with ajax calls if timeouts are too low. Consider using web sockets too but they are way harder to set up., (*46)

Container

Async and Reloadable widgets both require some DOM interaction so they wrap all widget output in a html container. This container is defined by AbstractWidget::container() method and can be customized too., (*47)

    /**
     * Async and reloadable widgets are wrapped in container.
     * You can customize it by overriding this method.
     *
     * @return array
     */
    public function container()
    {
        return [
            'element'       => 'div',
            'attributes'    => 'style="display:inline" class="artisancms-widget-container"',
        ];
    }

Note: Nested async or reloadable widgets are not supported., (*48)

Caching

There is also a simple built-in way to cache entire widget output. Just set $cacheTime property in your widget class and you are done., (*49)

class RecentNews extends AbstractWidget
{
    /**
     * The number of minutes before cache expires.
     * False means no caching at all.
     *
     * @var int|float|bool
     */
    public $cacheTime = 60;
}

No caching is turned on by default. A cache key depends on a widget name and each widget parameter. Override cacheKey method if you need to adjust it., (*50)

Widget groups (extra)

In most cases Blade is a perfect tool for setting the position and order of widgets. However, sometimes you may find useful the following approach:, (*51)

// add several widgets to the 'sidebar' group anywhere you want (even in controller)
Widget::group('sidebar')->position(5)->addWidget('widgetName1', $config1);
Widget::group('sidebar')->position(4)->addAsyncWidget('widgetName2', $config2);

// display them in a view in the correct order
@widgetGroup('sidebar')
//or 
{{ Widget::group('sidebar')->display() }}

position() can be omitted from the chain., (*52)

Widget::group('sidebar')->addWidget('files');, (*53)

equals, (*54)

Widget::group('sidebar')->position(100)->addWidget('files');, (*55)

You can also set a separator to display between widgets in a group. Widget::group('sidebar')->setSeparator('<hr>');, (*56)

Checking the state of a widget group

Widget::group('sidebar')->isEmpty(); // bool, (*57)

Widget::group('sidebar')->any(); // bool, (*58)

Widget::group('sidebar')->count(); // int, (*59)

The Versions

08/10 2016

dev-master

9999999-dev https://github.com/artisancms/widgets

A powerful alternative to view composers. Asynchronous widgets, reloadable widgets, console generator, caching - everything you can think of.

  Sources   Download

MIT

The Requires

 

The Development Requires

by Andrew huggins

laravel ajax widgets

08/10 2016

3.6.2

3.6.2.0 https://github.com/artisancms/widgets

A powerful alternative to view composers. Asynchronous widgets, reloadable widgets, console generator, caching - everything you can think of.

  Sources   Download

MIT

The Requires

 

The Development Requires

by Andrew huggins

laravel ajax widgets

24/08 2016

3.6.1

3.6.1.0 https://github.com/Arrilot/laravel-widgets

A powerful alternative to view composers. Asynchronous widgets, reloadable widgets, console generator, caching - everything you can think of.

  Sources   Download

MIT

The Requires

 

The Development Requires

by Nekrasov Ilya

laravel ajax widgets

31/07 2016

3.6.0

3.6.0.0 https://github.com/Arrilot/laravel-widgets

A powerful alternative to view composers. Asynchronous widgets, reloadable widgets, console generator, caching - everything you can think of.

  Sources   Download

MIT

The Requires

 

The Development Requires

by Nekrasov Ilya

laravel ajax widgets

10/07 2016

3.5.0

3.5.0.0 https://github.com/Arrilot/laravel-widgets

A powerful alternative to view composers. Asynchronous widgets, reloadable widgets, console generator, caching - everything you can think of.

  Sources   Download

MIT

The Requires

 

The Development Requires

by Nekrasov Ilya

laravel ajax widgets

14/06 2016

3.4.2

3.4.2.0 https://github.com/Arrilot/laravel-widgets

A powerful alternative to view composers. Asynchronous widgets, reloadable widgets, console generator, caching - everything you can think of.

  Sources   Download

MIT

The Requires

 

The Development Requires

by Nekrasov Ilya

laravel ajax widgets

13/06 2016

3.4.1

3.4.1.0 https://github.com/Arrilot/laravel-widgets

A powerful alternative to view composers. Asynchronous widgets, reloadable widgets, console generator, caching - everything you can think of.

  Sources   Download

MIT

The Requires

 

The Development Requires

by Nekrasov Ilya

laravel ajax widgets

21/05 2016

3.4.0

3.4.0.0 https://github.com/Arrilot/laravel-widgets

A powerful alternative to view composers. Asynchronous widgets, reloadable widgets, console generator, caching - everything you can think of.

  Sources   Download

MIT

The Requires

 

The Development Requires

by Nekrasov Ilya

laravel ajax widgets

06/02 2016

3.3.2

3.3.2.0 https://github.com/Arrilot/laravel-widgets

A powerful alternative to view composers. Asynchronous widgets, reloadable widgets, console generator, caching - everything you can think of.

  Sources   Download

MIT

The Requires

 

The Development Requires

by Nekrasov Ilya

laravel ajax widgets

28/01 2016

3.3.1

3.3.1.0 https://github.com/Arrilot/laravel-widgets

A powerful alternative to view composers. Asynchronous widgets, reloadable widgets, console generator, caching - everything you can think of.

  Sources   Download

MIT

The Requires

 

The Development Requires

by Nekrasov Ilya

laravel ajax widgets

26/01 2016

3.3.0

3.3.0.0 https://github.com/Arrilot/laravel-widgets

A powerful alternative to view composers. Asynchronous widgets, reloadable widgets, console generator, caching - everything you can think of.

  Sources   Download

MIT

The Requires

 

The Development Requires

by Nekrasov Ilya

laravel ajax widgets

15/12 2015

3.2.1

3.2.1.0 https://github.com/Arrilot/laravel-widgets

A powerful alternative to view composers. Asynchronous widgets, reloadable widgets, console generator, caching - everything you can think of.

  Sources   Download

MIT

The Requires

 

The Development Requires

by Nekrasov Ilya

laravel ajax widgets

13/11 2015

3.2.0

3.2.0.0 https://github.com/Arrilot/laravel-widgets

A powerful alternative to view composers. Asynchronous widgets, reloadable widgets, console generator, caching - everything you can think of.

  Sources   Download

MIT

The Requires

 

The Development Requires

by Nekrasov Ilya

laravel ajax widgets

13/11 2015

3.1.3

3.1.3.0 https://github.com/Arrilot/laravel-widgets

A powerful alternative to view composers. Asynchronous widgets, reloadable widgets, console generator, caching - everything you can think of.

  Sources   Download

MIT

The Requires

 

The Development Requires

by Nekrasov Ilya

laravel ajax widgets

27/10 2015

3.1.2

3.1.2.0 https://github.com/Arrilot/laravel-widgets

A powerful alternative to view composers. Asynchronous widgets, reloadable widgets, console generator, caching - everything you can think of.

  Sources   Download

MIT

The Requires

 

The Development Requires

by Nekrasov Ilya

laravel ajax widgets

13/07 2015

3.1.1

3.1.1.0 https://github.com/Arrilot/laravel-widgets

A powerful alternative to view composers. Asynchronous widgets, reloadable widgets, console generator, caching - everything you can think of.

  Sources   Download

MIT

The Requires

 

The Development Requires

by Nekrasov Ilya

laravel ajax widgets

07/07 2015

3.0.2

3.0.2.0 https://github.com/Arrilot/laravel-widgets

A powerful alternative to view composers. Asynchronous widgets, reloadable widgets, console generator, caching - everything you can think of.

  Sources   Download

MIT

The Requires

 

The Development Requires

by Nekrasov Ilya

laravel ajax widgets

03/07 2015

3.0.1

3.0.1.0 https://github.com/Arrilot/laravel-widgets

A powerful alternative to view composers. Asynchronous widgets, reloadable widgets, console generator, caching - everything you can think of.

  Sources   Download

MIT

The Requires

 

The Development Requires

by Nekrasov Ilya

laravel ajax widgets

29/06 2015

3.0.0

3.0.0.0 https://github.com/Arrilot/laravel-widgets

This package provides widget functionality to boost your Laravel views. It also includes asynchronous widgets, reloadable widgets, generator and etc.

  Sources   Download

MIT

The Requires

 

The Development Requires

by Nekrasov Ilya

laravel ajax widgets

27/06 2015

2.8.0

2.8.0.0 https://github.com/Arrilot/laravel-widgets

This package provides widget functionality to boost your Laravel views. It also includes asynchronous widgets, reloadable widgets, generator and etc.

  Sources   Download

MIT

The Requires

 

The Development Requires

by Nekrasov Ilya

laravel ajax widgets

23/06 2015

2.7

2.7.0.0 https://github.com/Arrilot/laravel-widgets

This package provides widget functionality to boost your Laravel views. It also includes asynchronous widgets, reloadable widgets, generator and etc.

  Sources   Download

MIT

The Requires

 

The Development Requires

by Nekrasov Ilya

laravel ajax widgets

30/05 2015

2.6

2.6.0.0 https://github.com/Arrilot/laravel-widgets

This package provides widget functionality to boost your Laravel views. It also includes asynchronous widgets, reloadable widgets, generator and etc.

  Sources   Download

MIT

The Requires

 

The Development Requires

by Nekrasov Ilya

laravel ajax widgets

17/05 2015

2.5.1

2.5.1.0 https://github.com/Arrilot/laravel-widgets

This package provides widget functionality to boost your Laravel views. It also includes asynchronous widgets, reloadable widgets, generator and etc.

  Sources   Download

MIT

The Requires

 

The Development Requires

by Nekrasov Ilya

laravel ajax widgets

17/05 2015

2.5.0

2.5.0.0 https://github.com/Arrilot/laravel-widgets

This package provides widget functionality to boost your Laravel views. Includes asynchronous mode and generator.

  Sources   Download

MIT

The Requires

 

The Development Requires

by Nekrasov Ilya

laravel widgets

11/05 2015

2.4.1

2.4.1.0 https://github.com/Arrilot/laravel-widgets

This package provides widget functionality to boost your Laravel views. Includes asynchronous mode and generator.

  Sources   Download

MIT

The Requires

 

The Development Requires

by Nekrasov Ilya

laravel widgets

11/05 2015

2.4.0

2.4.0.0 https://github.com/Arrilot/laravel-widgets

This package provides widget functionality to boost your Laravel views. Includes asynchronous mode and generator.

  Sources   Download

MIT

The Requires

 

The Development Requires

by Nekrasov Ilya

laravel widgets

09/05 2015

2.3.8

2.3.8.0 https://github.com/Arrilot/laravel-widgets

This package provides widget functionality to boost your Laravel views. Includes asynchronous mode and generator.

  Sources   Download

MIT

The Requires

 

The Development Requires

by Nekrasov Ilya

laravel widgets

07/05 2015

2.3.7

2.3.7.0 https://github.com/Arrilot/laravel-widgets

This packages provides widget functionality to boost your Laravel views. Includes asynchronous mode and generator.

  Sources   Download

MIT

The Requires

 

The Development Requires

by Nekrasov Ilya

laravel widgets

02/05 2015

dev-scrutinizer-patch-1

dev-scrutinizer-patch-1 https://github.com/Arrilot/laravel-widgets

This packages provides widget functionality to boost your Laravel views. Includes asynchronous mode and generator.

  Sources   Download

MIT

The Requires

 

The Development Requires

by Nekrasov Ilya

laravel widgets

01/05 2015

2.3.6

2.3.6.0 https://github.com/Arrilot/laravel-widgets

This packages provides widget functionality to boost your Laravel views. Includes asynchronous mode and generator.

  Sources   Download

MIT

The Requires

 

The Development Requires

by Nekrasov Ilya

laravel widgets

01/05 2015

2.3.5

2.3.5.0 https://github.com/Arrilot/laravel-widgets

This packages provides widget functionality to boost your Laravel views. Includes asynchronous mode and generator.

  Sources   Download

MIT

The Requires

 

The Development Requires

by Nekrasov Ilya

laravel widgets

30/04 2015

2.3.4

2.3.4.0 https://github.com/Arrilot/laravel-widgets

This packages provides widget functionality to boost your Laravel views. Includes asynchronous mode and generator.

  Sources   Download

MIT

The Requires

 

The Development Requires

by Nekrasov Ilya

laravel widgets

28/04 2015

2.3.2

2.3.2.0 https://github.com/Arrilot/laravel-widgets

This packages provides widget functionality to boost your Laravel views. Includes asynchronous mode and generator.

  Sources   Download

MIT

The Requires

 

The Development Requires

by Nekrasov Ilya

laravel widgets

28/04 2015

2.3.3

2.3.3.0 https://github.com/Arrilot/laravel-widgets

This packages provides widget functionality to boost your Laravel views. Includes asynchronous mode and generator.

  Sources   Download

MIT

The Requires

 

The Development Requires

by Nekrasov Ilya

laravel widgets

22/04 2015

2.3.1

2.3.1.0 https://github.com/Arrilot/laravel-widgets

This packages provides widget functionality to boost your Laravel views. Includes asynchronous mode and generator.

  Sources   Download

MIT

The Requires

 

The Development Requires

by Nekrasov Ilya

laravel widgets

12/04 2015

2.3.0

2.3.0.0 https://github.com/Arrilot/laravel-widgets

This packages provides widget functionality to boost your Laravel views. Includes asynchronous mode and generator.

  Sources   Download

MIT

The Requires

 

The Development Requires

by Nekrasov Ilya

laravel widgets

30/03 2015

2.2.3

2.2.3.0 https://github.com/Arrilot/laravel-widgets

This packages provides widget functionality to boost your Laravel views. Includes asynchronous mode and generator.

  Sources   Download

MIT

The Requires

 

The Development Requires

by Nekrasov Ilya

laravel widgets

29/03 2015

2.2.2

2.2.2.0 https://github.com/Arrilot/laravel-widgets

This packages provides widget functionality to boost your Laravel views. Includes asynchronous mode and generator.

  Sources   Download

MIT

The Requires

 

The Development Requires

by Nekrasov Ilya

laravel widgets

29/03 2015

1.0.x-dev

1.0.9999999.9999999-dev https://github.com/Arrilot/laravel-widgets

This packages provides a basic widget functionality to boost your Laravel views. Really fast and convinient workflow

  Sources   Download

MIT

The Requires

 

The Development Requires

by Nekrasov Ilya

laravel widgets

28/03 2015

2.2.1

2.2.1.0 https://github.com/Arrilot/laravel-widgets

This packages provides widget functionality to boost your Laravel views. Includes asynchronous mode and generator.

  Sources   Download

MIT

The Requires

 

The Development Requires

by Nekrasov Ilya

laravel widgets

26/03 2015

2.2.0

2.2.0.0 https://github.com/Arrilot/laravel-widgets

This packages provides widget functionality to boost your Laravel views. Includes asynchronous mode and generator.

  Sources   Download

MIT

The Requires

 

The Development Requires

by Nekrasov Ilya

laravel widgets

16/03 2015

2.1.3

2.1.3.0 https://github.com/Arrilot/laravel-widgets

This packages provides widget functionality to boost your Laravel views. Includes asynchronous mode and generator.

  Sources   Download

MIT

The Requires

 

The Development Requires

by Nekrasov Ilya

laravel widgets

11/03 2015

2.1.2

2.1.2.0 https://github.com/Arrilot/laravel-widgets

This packages provides widget functionality to boost your Laravel views. Includes asynchronous mode and generator.

  Sources   Download

MIT

The Requires

 

The Development Requires

by Nekrasov Ilya

laravel widgets

09/03 2015

2.1.1

2.1.1.0 https://github.com/Arrilot/laravel-widgets

This packages provides widget functionality to boost your Laravel views. Includes asynchronous mode and generator.

  Sources   Download

MIT

The Requires

 

The Development Requires

by Nekrasov Ilya

laravel widgets

07/02 2015

2.1.0

2.1.0.0 https://github.com/Arrilot/laravel-widgets

This packages provides a basic widget functionality to boost your Laravel views. Really fast and convinient workflow

  Sources   Download

MIT

The Requires

 

The Development Requires

by Nekrasov Ilya

laravel widgets

04/02 2015

2.0.1

2.0.1.0 https://github.com/Arrilot/laravel-widgets

This packages provides a basic widget functionality to boost your Laravel views. Really fast and convinient workflow

  Sources   Download

MIT

The Requires

 

The Development Requires

by Nekrasov Ilya

laravel widgets

31/01 2015

1.0.1

1.0.1.0 https://github.com/Arrilot/laravel-widgets

This packages provides a basic widget functionality to boost your Laravel views. Really fast and convinient workflow

  Sources   Download

MIT

The Requires

 

The Development Requires

by Nekrasov Ilya

laravel widgets

31/01 2015

1.0.2

1.0.2.0 https://github.com/Arrilot/laravel-widgets

This packages provides a basic widget functionality to boost your Laravel views. Really fast and convinient workflow

  Sources   Download

MIT

The Requires

 

The Development Requires

by Nekrasov Ilya

laravel widgets

26/01 2015

2.0.0

2.0.0.0 https://github.com/Arrilot/laravel-widgets

This packages provides a basic widget functionality to boost your Laravel views. Really fast and convinient workflow

  Sources   Download

MIT

The Requires

 

The Development Requires

by Nekrasov Ilya

laravel widgets

26/01 2015

1.0.0

1.0.0.0 https://github.com/Arrilot/laravel-widgets

This packages provides a basic widget functionality to boost your Laravel views. Really fast and convinient workflow

  Sources   Download

MIT

The Requires

 

The Development Requires

by Nekrasov Ilya

laravel widgets

25/01 2015

0.2.3

0.2.3.0 https://github.com/Arrilot/laravel-widgets

This packages provides a basic widget functionality to boost your Laravel views. Really fast and convinient workflow

  Sources   Download

MIT

The Requires

 

The Development Requires

by Nekrasov Ilya

laravel widgets

25/01 2015

0.2.2

0.2.2.0 https://github.com/Arrilot/laravel-widgets

This packages provides a basic widget functionality to boost your Laravel views. Really fast and convinient workflow

  Sources   Download

MIT

The Requires

 

The Development Requires

by Nekrasov Ilya

laravel widgets

13/01 2015

0.2.1

0.2.1.0 https://github.com/Arrilot/laravel-widgets

  Sources   Download

MIT

The Requires

 

The Development Requires

by Nekrasov Ilya

laravel widgets

12/01 2015

0.2.0

0.2.0.0 https://github.com/Arrilot/laravel-widgets

  Sources   Download

MIT

The Requires

 

The Development Requires

by Nekrasov Ilya

laravel widgets

11/01 2015

0.1.2

0.1.2.0 https://github.com/Arrilot/laravel-widgets

  Sources   Download

MIT

The Requires

 

The Development Requires

by Nekrasov Ilya

laravel widgets

11/01 2015

0.1.1

0.1.1.0 https://github.com/Arrilot/laravel-widgets

  Sources   Download

MIT

The Requires

 

The Development Requires

by Nekrasov Ilya

laravel widgets

11/01 2015

0.1.0

0.1.0.0 https://github.com/Arrilot/laravel-widgets

  Sources   Download

MIT

The Requires

 

The Development Requires

by Nekrasov Ilya

laravel widgets