first commit

This commit is contained in:
denisdulici
2017-09-14 22:21:00 +03:00
commit 515bdaf5cd
598 changed files with 48030 additions and 0 deletions

View File

@ -0,0 +1,31 @@
<?php
namespace App\Providers;
use App\Models\Company\Company;
use Illuminate\Support\ServiceProvider;
class ObserverServiceProvider extends ServiceProvider
{
/**
* Register bindings in the container.
*
* @return void
*/
public function boot()
{
// Observe company actions
Company::observe('App\Observers\Company');
}
/**
* Register the service provider.
*
* @return void
*/
public function register()
{
//
}
}