thomasjohnkane / nova-vimeo-field

Simple Laravel Nova Vimeo field.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Nova Vimeo Field

Vimeo player

Installation

You can install the package in to a Laravel app that uses Nova via composer:

composer require tanjemark/nova-vimeo-field

Usage

use Tanjemark\Fields\Vimeo;

Vimeo::make('Vimeo field name'),

The field extends the base Laravel\Nova\Fields\Field, so all the usual methods are available.

Options

With meta

use Tanjemark\Fields\Vimeo;

Vimeo::make('Vimeo field name')
    ->withMeta([
        'options' => [
            'width' => 640,
            'height' => 360,
        ]
    ]);

License

The MIT License (MIT). Please see License File for more information.

About

Simple Laravel Nova Vimeo field.

License:MIT License


Languages

Language:Vue 57.8%Language:PHP 30.2%Language:JavaScript 11.6%Language:CSS 0.4%