22 lines
342 B
PHP
22 lines
342 B
PHP
![]() |
<?php
|
||
|
|
||
|
namespace TomLingham\Searchy\Facades;
|
||
|
|
||
|
use Illuminate\Support\Facades\Facade;
|
||
|
|
||
|
/**
|
||
|
* Searchy facade for the Laravel framework.
|
||
|
*/
|
||
|
class Searchy extends Facade
|
||
|
{
|
||
|
/**
|
||
|
* Get the registered component.
|
||
|
*
|
||
|
* @return object
|
||
|
*/
|
||
|
protected static function getFacadeAccessor()
|
||
|
{
|
||
|
return 'searchy';
|
||
|
}
|
||
|
}
|