Laravel widget package for Laravel >= 5.1
composer require morilog/widgetify
-
Add
Morilog\Widgetify\WidgetifyServiceProvidertoconfig/app.phpproviders array -
If you need to Facade for rendering widgets, add bellow in
config/app.phpaliases array :
'Widgetify' => Morilog\Widgetify\Facades\Widgetify::class- For publish Widgetify config file, run this command:
php artisan vendor:publish --provider="Morilog\Widgetify\WidgetifyServiceProvider"
For creating new widget you must create a class that extended Morilog\Widgetify\Widget and implement handle() method.
<?php
namespace App\MyWidgets;
use Morilog\Widgetify\Widget;
class SimpleWidget extends Widget
{
public function handle()
{
$latestPosts = Post::take(10)->get();
return view('path.to.view.file', compact('latestPosts'));
}
}- Add your widget to
widgetsarray inconfig/widgetify.phpfile:
'widgets' => [
'simple_widget' => App\MyWidgets\SimpleWidget::class
]With blade @widgetify directive:
// views/sidebar.blade.php
<div class="col-sm-3">
@widgetify('simple_widget')
</div>OR with configs:
// views/sidebar.blade.php
<div class="col-sm-3">
@widgetify('simple_widget', ['key' => 'value', 'key2' => 'value'])
</div>OR with Widgetify Facade:
// views/sidebar.blade.php
<div class="col-sm-3">
{!! Widgetify::render('simple_widgets') !!}
</div>// views/default.blade.php
<div class="col-sm-4">
{!! Widgetify::remember('my_widget', 15, [CONFIGS]); !!}
</div>
<div class="col-sm-4">
@cached_widgetify('my_widget', 15, [CONFIGS]);
</div>