PHP code example of keops007 / nova-big-filter-with-reset

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

    

keops007 / nova-big-filter-with-reset example snippets



use Keops007\NovaBigFilterWithReset\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(),
    ];
}