Releases: girardinsamuel/masonite-inertia
Releases · girardinsamuel/masonite-inertia
v0.4.1
- Add possibility to change id generated by
inertia
view helper
# app.html
{{ inertia(page) }} <!-- will generate <div id="app" ...> -->
{{ inertia(page, "my_app") }} <!-- will generate <div id="my_app" ...> -->
- Add possibility to access
request
in lazy loaded props in Inertia views
def lazy_view_with_request(self, view: InertiaResponse):
def is_authenticated(request):
return request.user()
return view.render("Index", {"is_authenticated": is_authenticated})
v0.4.0
v0.3.0
- Fix installation command
v0.2.0
bump to 0.2.0
v0.1.0
- First release of the adapter
- Feature almost all the capabilities from legacy laravel adapter