A Laravel Livewire integration for Statamics Antlers template engine.
Pull in your package with composer
composer require jonassiewertsen/statamic-livewire
Include the JavaScript (on every page that will be using Livewire).
...
{{ livewire:styles }}
</head>
<body>
...
{{ livewire:scripts }}
</body>
</html>
You can create Livewire components as described in the general documentation. To include your Livewire component:
<head>
...
{{ livewire:styles }}
</head>
<body>
{{ livewire:your-component-name }}
...
{{ livewire:scripts }}
</body>
</html>
If creating a Livewire component, you need to render a template file
namespace App\Http\Livewire;
use Livewire\Component;
class Counter extends Component
{
public function render()
{
return view('livewire.counter');
}
}
More Information: (https://laravel-livewire.com/docs/quickstart#create-a-component)
Normally your template file would be a blade file, named counter.blade.php
. Great, but what about Antlers?
Rename your template to counter.antlers.html
, use Antlers syntax and do wathever you like. No need to change anything inside your component Controller. How cool is that?
You can pass data into a component by passing additional parameters
{{ livewire:your-component-name contact="contact" }}
To intercept with those parameters, mount them and store the data as public properties.
use Livewire\Component;
class ShowContact extends Component
{
public $name;
public $email;
public function mount($contact)
{
$this->name = $contact->name;
$this->email = $contact->email;
}
...
}
The Official Livewire documentation
- PHP 7.4
- Laravel 7
- Statamic 3
I love to share with the community. Nevertheless, it does take a lot of work, time and effort.
Sponsor me on GitHub to support my work and the support for this addon.
This plugin is published under the MIT license. Feel free to use it and remember to spread love.