Moving accounting commands into an Intuit/ namespace, updates to intuit module

This commit is contained in:
2024-07-14 13:49:00 +10:00
parent 28aa1f9dc8
commit b486a0eac4
15 changed files with 220 additions and 316 deletions

View File

@@ -4,11 +4,13 @@ namespace App\Providers;
use Illuminate\Support\Facades\Gate;
use Illuminate\Support\ServiceProvider;
use Intuit\Traits\IntuitSocialite;
use Leenooks\Traits\SingleOrFail;
class AppServiceProvider extends ServiceProvider
{
use SingleOrFail;
use IntuitSocialite;
/**
* Register any application services.
@@ -32,5 +34,7 @@ class AppServiceProvider extends ServiceProvider
Gate::define('reseller', function ($user) {
return $user->isReseller();
});
$this->bootIntuitSocialite();
}
}