PHP code example of nrml-co / nova-big-filter

1. Go to this page and download the library: Download nrml-co/nova-big-filter 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/ */

    

nrml-co / nova-big-filter example snippets



use NrmlCo\NovaBigFilter\NovaBigFilter;
use App\Nova\Filters\YourFilter;
use App\Nova\Filters\YourOtherFilter;

public function filters()
{
    return [
        new YourFilter,
        new YourOtherFilter,
    ];
}

public function cards()
{
    return [        
        new NovaBigFilter,
    ];
}


public function cards()
{
    return [        
        (new NovaBigFilter)->setTitle('Big Filter'),
    ];
}



public function cards()
{
    return [        
        (new NovaBigFilter)->setMaxHeight(400),
    ];
}



public function cards()
{
    return [        
        (new NovaBigFilter)->hideFilterTitle(),
    ];
}