PHPackages                             php-soft/laravel-array-view - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Templating &amp; Views](/categories/templating)
4. /
5. php-soft/laravel-array-view

ActiveLibrary[Templating &amp; Views](/categories/templating)

php-soft/laravel-array-view
===========================

Laravel Array View

v1.1.4(10y ago)312.1k13MITPHPPHP &gt;=5.5.9

Since Jul 16Pushed 10y ago6 watchersCompare

[ Source](https://github.com/php-soft/laravel-array-view)[ Packagist](https://packagist.org/packages/php-soft/laravel-array-view)[ RSS](/packages/php-soft-laravel-array-view/feed)WikiDiscussions master Synced 1mo ago

READMEChangelog (8)Dependencies (4)Versions (9)Used By (3)

Laravel Array View
==================

[](#laravel-array-view)

[![Build Status](https://camo.githubusercontent.com/bdc4437648a7868f543ce783cfddda44800ee1b09a442bec6a88a75d02adc783/68747470733a2f2f7472617669732d63692e6f72672f7068702d736f66742f6c61726176656c2d61727261792d766965772e737667)](https://travis-ci.org/php-soft/laravel-array-view)

An array view engine for Laravel PHP Framework.

Version Compatibility
---------------------

[](#version-compatibility)

ArrayViewLaravel1.0.x5.1.x1.1.x5.1.x1.1.45.\*Installation
------------

[](#installation)

```
$ composer require php-soft/laravel-array-view
```

Once this has finished, you will need to add the service provider to the `providers` array in your `app.php` config as follows:

```
'providers' => [
    // ...
    PhpSoft\ArrayView\Providers\ArrayViewServiceProvider::class,
]
```

Next, also in the `app.php` config file, under the `aliases` array, you may want to add facades.

```
'aliases' => [
    // ...
    'ArrayView' => PhpSoft\ArrayView\Facades\ArrayView::class,
]
```

Usage
-----

[](#usage)

Code in controller (Example routes.php)

```
