stevelacey / nova-vimeo-field
A Laravel Nova Vimeo field.
2.1.0
2022-06-13 12:35 UTC
Requires
- php: >=7.4
This package is auto-updated.
Last update: 2024-10-13 17:17:49 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, ] ]);