sergant210 / laravel-raw-view
It's intended to compile a view from the HTML string 'on the fly'. You don't need to create a view file.
Installs: 55
Dependents: 0
Suggesters: 0
Security: 0
Stars: 4
Watchers: 1
Forks: 2
Open Issues: 0
pkg:composer/sergant210/laravel-raw-view
Requires
- php: ~7.0
- illuminate/view: ^7.0|^8.0
Requires (Dev)
- phpunit/phpunit: ^8.0|^9.0
This package is auto-updated.
Last update: 2025-10-29 02:03:16 UTC
README
RawView for Laravel 5.5+ gives an ability to compile a view from the raw HTML code with Blade directives without creating a view file.
Install
Via Composer
$ composer require sergant210/laravel-raw-view
After that the view_raw function will be available. It works like the view function but you must specify the HTML code instead of the name of the view.
Usage
class Item { public $tpl = '<li class="{{ $item->makeClasses() }}"> {{ $item->name }}'; ... public function render() { return view_raw($this->tpl, ['item' => $this])->render(); } } // View <ul> @foreach($items as $item) {!! $item->render() !!} @endforeach </ul>
Changelog
Please see CHANGELOG for more information on what has changed recently.
License
The MIT License (MIT). Please see License File for more information.