PHPackages                             frogbob/laravel-blinky - 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. frogbob/laravel-blinky

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

frogbob/laravel-blinky
======================

Foundation Inky email templates in Laravel

0.0.3(6y ago)12101[2 issues](https://github.com/frogbob/laravel-blinky/issues)MITPHP

Since Jul 24Pushed 6y ago1 watchersCompare

[ Source](https://github.com/frogbob/laravel-blinky)[ Packagist](https://packagist.org/packages/frogbob/laravel-blinky)[ RSS](/packages/frogbob-laravel-blinky/feed)WikiDiscussions master Synced 2w ago

READMEChangelog (2)Dependencies (6)Versions (4)Used By (0)

Laravel Blinky
==============

[](#laravel-blinky)

[![Laravel Blinky](https://camo.githubusercontent.com/89cdca2f85a144e20b762b50d57c642f41ae6b02d1d2078fe4d5e3c67fb6d1fb/687474703a2f2f6170692e6465766261722e756c747261626f6c642e64652f6769746875623f746578743d4c61726176656c253230426c696e6b79)](https://camo.githubusercontent.com/89cdca2f85a144e20b762b50d57c642f41ae6b02d1d2078fe4d5e3c67fb6d1fb/687474703a2f2f6170692e6465766261722e756c747261626f6c642e64652f6769746875623f746578743d4c61726176656c253230426c696e6b79)

**Inky-Compiler for Laravel blade-files**

Allows you to use Foundation's [Inky](http://foundation.zurb.com/emails/docs/inky.html) email templates nicely in Laravel.

It uses our [InkyPHP](https://github.com/frogbob/inky-php) to compile inky-language to its html-version.

Any views with a `.inky.php` extension will be compiled with both Inky and Blade, allowing you to use both templating engines seamlessly together. CSS is automatically inlined so styles work in email clients that don't support external stylesheets.

### Docs

[](#docs)

- [Installation](#installation)
- [Usage and Examples](#usage-and-examples)
- [Notes](#notes)
- [License](#license)

Installation
------------

[](#installation)

Require with composer

```
composer require frogbob/laravel-blinky

```

Once installed, you'll need to register the service provider. Open `config/app.php` and add to the `providers` key:

```
Frogbob\LaravelBlinky\BlinkyServiceProvider::class

```

Usage and Examples
------------------

[](#usage-and-examples)

Check the [Foundation for Emails docs](http://foundation.zurb.com/emails/docs/index.html) for full usage on how to use Inky and Foundation for Emails CSS.

Create an Inky view e.g. `emails/welcome.inky.php`

```

    Welcome, {{ $name }}

```

Use `Mail` as usual in Laravel

```
Mail::send('emails.welcome', ['name' => $user->name], function ($m) use ($user) {
  $m->from('hello@app.com', 'Your Application');

  $m->to($user->email, $user->name)->subject('Welcome!');
});
```

You can create a Blade layout to inherit from e.g. `emails/layout.inky.php`

```
"-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">

  @yield('content')

```

then

```
@extends('emails.layout')

@section('content')

      Welcome, {{ $name }}

@stop
```

### CSS Inlining

[](#css-inlining)

`` and `` are automatically inlined.

The location of your `` `href` is resolved to the `resources/assets/css` directory, so in the example above it expects some CSS at `resources/assets/css/foundation-emails.css`.

Here's a handy reference for CSS in emails: [CSS Support Guide for Email Clients](https://www.campaignmonitor.com/css/)

**Ignore CSS inlining**

Maybe you want to ignore the css inlining.

Just update add following settings to `config/views.php`:

```
    'laravel_blinky' => [
        'use_inliner' => false
    ]
```

Notes
-----

[](#notes)

Package based on [Laravel Inky](https://github.com/petecoop/laravel-inky) created by [petecoop](https://github.com/petecoop)

Unfortunately his Package seems to be abandoned and can not be installed on Laravel Versions &gt;= 5.5.

License
-------

[](#license)

See the [LICENSE](LICENSE) file for license info (it's the MIT license).

###  Health Score

21

—

LowBetter than 18% of packages

Maintenance0

Infrequent updates — may be unmaintained

Popularity14

Limited adoption so far

Community10

Small or concentrated contributor base

Maturity51

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~74 days

Total

3

Last Release

2385d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/74704c23d1a3ea66e1ddd18de4e90635ea4a2c28838e72ad49ba947694f7988e?d=identicon)[Flobbos](/maintainers/Flobbos)

![](https://avatars.githubusercontent.com/u/2151453?v=4)[Freerk van Zeijl](/maintainers/vanderb)[@vanderb](https://github.com/vanderb)

![](https://avatars.githubusercontent.com/u/21225502?v=4)[frogbob](/maintainers/frogbob)[@frogbob](https://github.com/frogbob)

---

Top Contributors

[![vanderb](https://avatars.githubusercontent.com/u/2151453?v=4)](https://github.com/vanderb "vanderb (17 commits)")

---

Tags

laravelfoundationinky

### Embed Badge

![Health badge](/badges/frogbob-laravel-blinky/health.svg)

```
[![Health](https://phpackages.com/badges/frogbob-laravel-blinky/health.svg)](https://phpackages.com/packages/frogbob-laravel-blinky)
```

###  Alternatives

[craftcms/cms

Craft CMS

3.6k3.6M2.9k](/packages/craftcms-cms)[moonshine/moonshine

Laravel administration panel

1.3k239.9k76](/packages/moonshine-moonshine)[psalm/plugin-laravel

Psalm plugin for Laravel

3345.1M337](/packages/psalm-plugin-laravel)[tallstackui/tallstackui

TallStackUI is a powerful suite of Blade components that elevate your workflow of Livewire applications.

721160.4k12](/packages/tallstackui-tallstackui)[tightenco/jigsaw

Simple static sites with Laravel's Blade.

2.3k449.3k30](/packages/tightenco-jigsaw)[roots/acorn

Framework for Roots WordPress projects built with Laravel components.

9772.3M122](/packages/roots-acorn)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
