nexph/view

Lightweight view engine for Nexph

Maintainers

Package info

github.com/nexphlabs/view

pkg:composer/nexph/view

Statistics

Installs: 1

Dependents: 1

Suggesters: 0

Stars: 0

Open Issues: 0

v0.0.2 2026-06-11 01:59 UTC

This package is auto-updated.

Last update: 2026-06-11 02:03:58 UTC


README

Lightweight view engine with Blade-like syntax and hybrid rendering support.

Installation

composer require nexph/view

Usage

return view('home', ['title' => 'Nexph']);

Syntax

{{ $title }}
{!! $html !!}
@if ($user)
@endif
@foreach ($users as $user)
@endforeach
@include('partials.card')
@island('Counter', ['count' => 0])

License

MIT