diff --git a/README.md b/README.md index 82ed954..772e435 100644 --- a/README.md +++ b/README.md @@ -104,4 +104,10 @@ The object `$this` can't be used in Blade templates due to compatibility problem So, instead of this object I made the `$view` object that has the same functionalities than the `$this` in a normal layout system. -For example , if you want to pass `$this->title` from content view to layout view, just use `$view->title` ,and in the layout view , you can get title by using `$this->title`. \ No newline at end of file +For example , if you want to pass `$this->title` from content view to layout view, just use `$view->title` ,and in the layout view , you can get title by using `$this->title`. + +### Blade template instructions + +The Laravel framework documentation has an extensive guide about how to work with Blade template system. Everything should be compatible with this module since it uses the same libraries in the background. + +[Link to the basic Blade documentation in Laravel homepage](https://laravel.com/docs/master/blade) \ No newline at end of file diff --git a/README_spanish.md b/README_spanish.md index 6165146..f0d8dce 100644 --- a/README_spanish.md +++ b/README_spanish.md @@ -106,4 +106,11 @@ La variable `$this` que se refiere al propio objeto de la vista no puede ser en Por ello, en lugar de esta variable, he creado en su lugar `$view` que tiene las mismas funcionalidades que `$this` en un sistema de layout normal. -Por ejemplo, si queremos pasar `$this->title` de una vista a nuestro layout, deberíamos usar en su lugar `$view->title`, y en el layout se podría seguir utilizando `$this->title`. \ No newline at end of file +Por ejemplo, si queremos pasar `$this->title` de una vista a nuestro layout, deberíamos usar en su lugar `$view->title`, y en el layout se podría seguir utilizando `$this->title`. + + +### Instrucciones de uso para Blade + +La documentación del framework Laravel tiene una extensa guía sobre cómo trabajar con el sistema de templates de Blade. Todo debería ser compatible con este módulo ya que utiliza las mismas librerías en su origen. + +[Link a la documentación básica de Blade en la web de Laravel](https://laravel.com/docs/master/blade) \ No newline at end of file diff --git a/composer.json b/composer.json index b99114f..7c7621a 100644 --- a/composer.json +++ b/composer.json @@ -7,7 +7,7 @@ "layout", "Blade" ], - "version": "1.1.0", + "version": "1.1.1", "type": "yii2-extension", "license": "BSD", "authors": [