Widgets embedded in the representation to form a complex, but at the same time independent of the user interface.
install wia composer
composer require orchid/widgetpublish package
php artisan vendor:publish
To create a new widget, you need to
php artisan orchid:widget NameClassWidget
In the folder app/Http/Widgets create a class widget template
Like a controller, a widget can also have its own view.
Recommended siting widget files in a subdirectory views.
To register your new widget, you must bring it to the config/widget.php
// 'widgets' => [ 'test' => App\Widgets\NameClassWidget::class ],
"Run" method is executed when the call widget defaul. you must perform in the code to connect the widget using Blade syntax:
@widget('test')
The MIT License (MIT). Please see License File for more information.