PHPackages                             dowilcox/blade-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. dowilcox/blade-view

AbandonedCakephp-plugin[Templating &amp; Views](/categories/templating)

dowilcox/blade-view
===================

Blade template engine for CakePHP3

v0.2.1(11y ago)15295MITPHP

Since Sep 29Pushed 6y ago4 watchersCompare

[ Source](https://github.com/dowilcox/BladeView)[ Packagist](https://packagist.org/packages/dowilcox/blade-view)[ Docs](https://github.com/dowilcox/BladeView)[ RSS](/packages/dowilcox-blade-view/feed)WikiDiscussions master Synced today

READMEChangelogDependencies (3)Versions (4)Used By (0)

BladeView
=========

[](#bladeview)

Laravel's Blade template engine in CakePHP 3.

Install
=======

[](#install)

Composer:

```
    [
        "require": {
            "dowilcox/blade-view": "0.2.*"
        }
    ]
```

In your bootstrap.php:

```
Plugin::load('BladeView', ['bootstrap' => false]);
```

In your controller:

```
public $viewClass = '\Dowilcox\BladeView\View\BladeView';
```

Now change all the template files in src/Template from .ctp to .blade.php

Usage
=====

[](#usage)

See Laravel's documenation for Blade: .

CakePHP view functions and helpers work a bit different.

\###Variables Before:

```

```

After:

```
{{{ $variable }}}
```

\###View functions: Before:

```

```

After:

```
@fetch()
```

\###Helpers (if loaded in a controller): Before:

```

```

After:

```
@html->css()
```

More Examples
=============

[](#more-examples)

```
{{-- src/Template/Common/view.blade.php --}}
@fetch('title')
@fetch('content')

    Related actions

    @fetch('sidebar')

```

```
{{-- src/Template/Posts/view.blade.php --}}
@extend('/Common/view')

@assign('title', $post)

@start('sidebar')

    @html->link('edit', [
        'action' => 'edit',
        $post['Post']['id']
    ])

@end()

{{-- The remaining content will be available as the 'content' block --}}
{{-- In the parent view. --}}
{{{ $post['Post']['body'] }}}
```

###  Health Score

28

—

LowBetter than 52% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity17

Limited adoption so far

Community11

Small or concentrated contributor base

Maturity55

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 ~1 days

Total

3

Last Release

4292d ago

### Community

Maintainers

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

---

Top Contributors

[![dowilcox](https://avatars.githubusercontent.com/u/1311943?v=4)](https://github.com/dowilcox "dowilcox (28 commits)")

---

Tags

cakephpbladeviewcakephp3

### Embed Badge

![Health badge](/badges/dowilcox-blade-view/health.svg)

```
[![Health](https://phpackages.com/badges/dowilcox-blade-view/health.svg)](https://phpackages.com/packages/dowilcox-blade-view)
```

###  Alternatives

[blade-ui-kit/blade-icons

A package to easily make use of icons in your Laravel Blade views.

2.5k42.5M398](/packages/blade-ui-kit-blade-icons)[moonshine/moonshine

Laravel administration panel

1.3k253.1k79](/packages/moonshine-moonshine)[tightenco/jigsaw

Simple static sites with Laravel's Blade.

2.3k453.6k30](/packages/tightenco-jigsaw)[jenssegers/blade

The standalone version of Laravel's Blade templating engine for use outside of Laravel.

8791.3M114](/packages/jenssegers-blade)[friendsofcake/cakephp-csvview

A CSV View class for CakePHP

1782.6M5](/packages/friendsofcake-cakephp-csvview)[spatie/laravel-blade-comments

Add debug comments to your rendered output

180335.8k](/packages/spatie-laravel-blade-comments)

PHPackages © 2026

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