# Live update
Live update is a field resource for Laravel Nova with which you can edit texts inline on index pages. See the screenshot below for reference.
# Screenshot
# Installation
# Require the package and its dependencies
composer require marshmallow/translatable
1
2
2
# Usage
Currently we only have a simple text field available for live updating. If you wish to have more fields available please create an issue or send us a pull request.
use Marshmallow\LiveUpdate\TextLiveUpdate;
TextLiveUpdate::make('Name')
1
2
3
2
3