for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace OpenSkill\Datatable\Columns\Searchable;
class NoneSearchable extends Searchable
{
/**
* Will return if this configuration allows searching on the column.
* @return bool
*/
public function isSearchable()
return false;
}