initial commit

This commit is contained in:
glmdev
2016-07-08 21:25:44 -05:00
commit 47e0f80ac9
18 changed files with 719 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
<?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');
}
}