PHP code example of awcodes / matinee

1. Go to this page and download the library: Download awcodes/matinee library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

awcodes / matinee example snippets


protected $casts = [
    'video' => 'array', // or 'json'
];

use Awcodes\Matinee\Matinee;

Matinee::make('video')

use Awcodes\Matinee\Matinee;

Matinee::make('video')
    ->showPreview()

use Awcodes\Matinee\Providers\Concerns\IsMatineeProvider;
use Awcodes\Matinee\Providers\Contracts\MatineeProvider;

class CustomProvider implements MatineeProvider
{
    use IsMatineeProvider;

    public function getId(): ?string
    {
        return 'custom';
    }

    public function getDomains(): array
    {
        return [
            'custom.com',
        ];
    }

    public function getOptions(): array
    {
        return [
            'controls' => 1,
            'title' => 0,
        ];
    }

    public function convertUrl(?array $options = []): string
    {
        return 'https://www.custom.com/embed/' . $this->getId() . '?' . http_build_query($options);
    }
}

use Awcodes\Matinee\Matinee;

Matinee::make('video')
    ->providers([CustomProvider::class])
js
content: [
    './vendor/awcodes/matinee/resources/views/**/*.blade.php',
]