jacksleight / laravel-omni
Fund package maintenance!
jacksleight
Requires
- php: ^8.3|^8.4
- laravel/framework: ^12.0
- livewire/livewire: ^3.6
Requires (Dev)
- laravel/pint: ^1.20
This package is auto-updated.
Last update: 2025-06-27 15:28:09 UTC
README
Omni is a Laravel package and Vite plugin for building universal single-file Blade and Livewire components.
The core goals of Omni are:
- A single type of view, everything’s a component
- A single API for defining all components
- A single syntax for including all components
- A single directory structure for all components
- A single file for all component concerns (logic, template, styles and scripts)
Important
I built this because I want to implement views as describe above, but this package does not get in the way of the usual view approaches. You can still render plain view files, create normal Blade and Livewire components stored in their usual locations, and use all the various Blade include directives.
All Omni components can:
- Be standard Blade or Livewire components
- Be mounted to a route as a full-page component
- Be rendered from a controller
- Be rendered in a template using
x-
syntax - Pull layouts into their templates
- Use slots and attribute bags
- Define template helper functions
- Include JS and CSS that’s bundled by Vite
- Extend other Omni components
- Live in any view directory
Warning
This package is experimental and could change. Some things may not behave as expected, see known differences and issues.
Creating Components
You can create Omni components manually or using the make:omni
command.
Manual Creation
To create an Omni component manually, simply create a new view file anywhere in the views directory. They looks like this:
<?php namespace App\Omni; class Counter { protected int $count = 0; } ?> <template omni> <div> {{ $count }} </div> </template> <style omni> /* ... */ </style> <script omni> /* ... */ </script>
And to make it a Livewire component with a layout:
<?php namespace App\Omni; class Counter { public int $count = 0; /* Make this public */ public function increment() { $this->count++; } } ?> <x-layout> <template omni:wire> {{-- Enable Livewire --}} <div> {{ $count }} <button wire:click="increment">+</button> </div> </template> </x-layout>
Name, Path and Class
An Omni component's name, path and class must all match. The class namespace must include Omni
. The part before Omni
is the component prefix, and the part after is the component name, for example:
Name: counter
Path: resources/views/counter.blade.php
Class: App\Omni\Counter
Name: shop-app::products.list
Path: vendor/shop-app/resources/views/products/list.blade.php
Class: ShopApp\Omni\Products\List
A blank name prefix maps to the App
class namespace.
Using the Make Command
You can also create a new Omni component using the make:omni
Artisan command:
php artisan make:omni php artisan make:omni counter php artisan make:omni counter --wire
Lifecycle
Livewire components run through the usual Livewire lifecycle, standard components support the mount
and rendering
lifecycle hooks:
public function mount($value) { // ... } public function rendering($view) { // ... }
With
To pass additional variables to the template use the with
method:
protected function with() { return [ // ... ]; }
Attributes & Slots
Use attributes and slots as usual. If you're using them in Livewire components Omni provides synthesizers to handle the serialization.
<template omni> <div {{ $attributes->class('p-4') }}> {{ $slot }} </div> </template>
Rendering Components
Blade Templates
To render any component in a Blade template use the x-
syntax:
<x-counter :count="4"> Content </x-counter>
Controllers
To render any component from a controller action use the omni
view macro or mount
method:
use App\Omni\Counter; use JackSleight\LaravelOmni\Omni; return view()->omni('counter', ['count' => 4]); return view()->omni(Counter::class, ['count' => 4]); return Omni::mount('counter', ['count' => 4]); return Omni::mount(Counter::class, ['count' => 4]);
Routes
To mount any component to a route use the omni
route macro or class directly:
use App\Omni\Counter; use JackSleight\LaravelOmni\Omni; Route::omni('counter/{count}', 'counter', ['count' => 4]); Route::omni('counter/{count}', Counter::class, ['count' => 4]); Route::get('counter/{count}', Counter::class);
Property Visibility
Public properties have special meaning in Livewire components, so Omni needs a way to define properties for standard components without the risk of them being exposed by mistake when switching a standard component to Livewire.
Therefore it's reccomended to define standard component properties as protected instead of public, and only switch them to public when you need to. Protected properties are avaliable in a standard component's template scope.
Component Modes
Omni components run in one of three modes depending on the <template>
tag you declare and the template structure.
-
Standard Mode
All components that declare aomni
template run in standard mode. They supportmount
andrendering
lifecycle hooks. Public and protected properties will be filled automatically and are avaliable in the template scope. -
Livewire Mode
Components that declare aomni:wire
template and have no code outside of the<template>
tag run in Livewire mode. They run through the usual Livewire lifecycle. Public properties will be filled automatically and are avaliable in the template scope. Protected properties should be set inmount
and provided to the template viawith
. -
Combined Mode
Components that declare aomni:wire
template and have code outside of the<template>
tag run in combined mode. Combined components are actually two instances of the same component. The part of the template outside the<template>
tag runs in standard mode, and then the part of the template inside the<template>
tag runs in Livewire mode.
Component Detection
Any view that contains an Omni template tag or namespace declaration is considered an Omni component. If you don't need the class it can be omitted so long as you have a valid template tag. If you're building a standard component and dont need seperate style and script blocks you can omit the template tag so long as you have a valid namespace declaration.
Bundling Scripts & Styles
Any Omni <script>
and <style>
blocks will be excluded from the templates and can instead be included in your JS and CSS bundles using the provided Vite plugin. To set that up add the Omni package as a dependency in package.json
:
{ "dependencies": { "omni": "file:./vendor/jacksleight/laravel-omni" } }
Then add the plugin in vite.config.js
:
import omni from 'omni/plugins/vite'; export default defineConfig({ plugins: [ omni({ views: [ __dirname + '/resources/views', ] }), ], });
And finally import the Omni scripts and styles into your app.js
and app.css
files:
import 'omni/scripts';
@import 'omni/styles';
Differences & Issues
Known Differences
These are intentional differences in the way Omni components behave compared to normal Blade or Livewire components.
- Standard component protected properties will be filled from tag attributes and parameter arrays.
- Standard component protected properties are available in the template scope.
- Individual attributes are not set as variables in the template scope.
- Conditionally rendering components by implementing
shouldRender
is not supported.
Known Issues
- Route model binding is not yet supported.
- Directory component paths (
counter
->/views/counter/counter.blade.php
) are not yet supported.
Unknown Differences & Issues
- Almost definitely.
Troubleshooting
- Error:
Using $this when not in object context
You may be trying to use a computed Livewire property in a standard non-Livewire template.
Credits
While Omni does not depend on Livewire Volt and doesn't support any of it's functional syntax, it is obviously heavily inspired by Volt's single-file approach. This package would not exist if it wasn't for Volt, so a huge thanks to the Volt team. ❤️