24 lines
434 B
PHP
24 lines
434 B
PHP
|
<?php
|
||
|
|
||
|
namespace Element\Search;
|
||
|
|
||
|
|
||
|
use Illuminate\Support\ServiceProvider;
|
||
|
|
||
|
class SearchServiceProvider extends ServiceProvider
|
||
|
{
|
||
|
public function boot(){
|
||
|
|
||
|
}
|
||
|
|
||
|
public function register(){
|
||
|
|
||
|
$this->app->bind('e-search', function(){
|
||
|
return new Search;
|
||
|
});
|
||
|
|
||
|
$loader = \Illuminate\Foundation\AliasLoader::getInstance();
|
||
|
$loader->alias('Search', 'Element\Search\SearchFacade');
|
||
|
|
||
|
}
|
||
|
}
|