1. Go to this page and download the library: Download mrssoft/yii2-link-relative library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
mrssoft / yii2-link-relative example snippets
echo LinkRelativeWidget::widget([
'model' => $model, //Базовая модель
'relationName' => 'items', //Название отношения (конечного)
'attributeTitle' => 'title', //Атрибут для вывода в таблице
'viaToElementName' => 'item',
'ajaxUrl' => ['item/search'], //Ссылка на поиск элементов
'placeholder' => 'Поиск товара...',
'name' => 'Товар' //Название элементов в таблице
]);
public function behaviors()
{
return [
[
'class' => SaveRelationBehavior::class,
'relationName' => 'items'
],
];
}