stevelacey / nova-vimeo-field
A Laravel Nova Vimeo field.
Installs: 1 723
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 0
Forks: 8
Language:Vue
pkg:composer/stevelacey/nova-vimeo-field
Requires
- php: >=7.4
This package is auto-updated.
Last update: 2025-09-13 19:10:24 UTC
README
Laravel Nova Vimeo field stores the id out of any given Vimeo link/embed, and renders a player.
Installation
composer require stevelacey/nova-vimeo-field
Usage
Define the following fields in your resource in the fields
method:
use SteveLacey\NovaVimeoField\Vimeo; ... Vimeo::make('Video') ->withMeta([ 'options' => [ 'width' => 640, 'height' => 360, ] ]);