curtisblackwell/laravel-blade-directive-yaml-injector

A short description of what your package does
15 1
Install
composer require curtisblackwell/laravel-blade-directive-yaml-injector
Latest Version:1.0.0
PHP:>=5.6.4
License:CC-BY-4.0
Last Updated:Apr 20, 2017
Links: GitHub  ·  Packagist
Maintainer: curtisblackwell

YAML Injector

This package enables you to inject YAML data into your views.

Installation

composer require curtisblackwell/laravel-blade-directive-yaml-injector

Usage

@yaml('myVar', 'my-yaml-file')

Example

// config/app.php
'providers' => [
  ...
  CurtisBlackwell\YamlInjectionProvider::class,
  ...
],
@yaml('bowie', 'david-bowie')

<table>
  <thead>
    <tr>
      <th>Year</th>
      <th>Title</th>
    </tr>
  </thead>
  <tbody>
    @foreach($bowie['albums'] as $album)
      <tr>
        <td>{{ $album['year'] }}</td>
        <td>{{ $album['title'] }}</td>
      </tr>
    @endforeach
  </tbody>
</table>
# resources/views/david-bowie.yaml
albums:
  -
    title: Self-titled
    year: 1967
  -
    title: Self-titled
    year: 1969
  -
    title: The Man Who Sold the World
    year: 1970
  -
    title: Hunky Dory
    year: 1971
  -
    title: The Rise and Fall of Ziggy Stardust and the Spiders from Mars
    year: 1972

Related Packages

hnhdigital-os/laravel-extras

Provides a collection of extras for Laravel 5.

17 1
wilsonpinto/laravel-blade-directives

This package adds custom directives for the Laravel 5 blade engine.

71 3
philo/laravel-blade

Use the simple and yet powerful Laravel Blade templating engine as a standalone...

683,521 355
igaster/laravel-theme

Laravel Themes: Asset & Views folder per theme. Theme inheritance. Blade integra...

1,260,414 515