update code

This commit is contained in:
manhlab
2021-04-07 06:32:42 -04:00
parent 7fb98911a6
commit a4753625f6
779 changed files with 335717 additions and 0 deletions

View File

@@ -0,0 +1,28 @@
<?php
namespace App\Providers;
use Illuminate\Support\ServiceProvider;
class AppServiceProvider extends ServiceProvider
{
/**
* Register any application services.
*
* @return void
*/
public function register()
{
//
}
/**
* Bootstrap any application services.
*
* @return void
*/
public function boot()
{
//
}
}

View File

@@ -0,0 +1,30 @@
<?php
namespace App\Providers;
use Illuminate\Foundation\Support\Providers\AuthServiceProvider as ServiceProvider;
use Illuminate\Support\Facades\Gate;
class AuthServiceProvider extends ServiceProvider
{
/**
* The policy mappings for the application.
*
* @var array
*/
protected $policies = [
// 'App\Model' => 'App\Policies\ModelPolicy',
];
/**
* Register any authentication / authorization services.
*
* @return void
*/
public function boot()
{
$this->registerPolicies();
//
}
}

View File

@@ -0,0 +1,21 @@
<?php
namespace App\Providers;
use Illuminate\Support\Facades\Broadcast;
use Illuminate\Support\ServiceProvider;
class BroadcastServiceProvider extends ServiceProvider
{
/**
* Bootstrap any application services.
*
* @return void
*/
public function boot()
{
Broadcast::routes();
require base_path('routes/channels.php');
}
}

View File

@@ -0,0 +1,48 @@
<?php
namespace App\Providers;
use Illuminate\Auth\Events\Registered;
use Illuminate\Auth\Listeners\SendEmailVerificationNotification;
use Illuminate\Foundation\Support\Providers\EventServiceProvider as ServiceProvider;
use Illuminate\Support\Facades\Event;
use App\Events\{
UserViewedDocument,
UsersReceivedDocument,
};
use App\Listeners\{
UpdateReceiverToSeen,
NotifyDocumentReceivedToUsers,
};
class EventServiceProvider extends ServiceProvider
{
/**
* The event listener mappings for the application.
*
* @var array
*/
protected $listen = [
Registered::class => [
SendEmailVerificationNotification::class,
],
UserViewedDocument::class => [
UpdateReceiverToSeen::class,
],
UsersReceivedDocument::class => [
NotifyDocumentReceivedToUsers::class,
],
];
/**
* Register any events for your application.
*
* @return void
*/
public function boot()
{
parent::boot();
\App\Entities\User::observe(\App\Observers\UserObserver::class);
}
}

View File

@@ -0,0 +1,39 @@
<?php
namespace App\Providers;
use Illuminate\Support\ServiceProvider;
class RepositoryServiceProvider extends ServiceProvider
{
/**
* Register services.
*
* @return void
*/
public function register()
{
//
}
/**
* Bootstrap services.
*
* @return void
*/
public function boot()
{
$this->app->bind(\App\Contracts\Repositories\UserRepository::class, \App\Repositories\Eloquents\UserRepositoryEloquent::class);
$this->app->bind(\App\Contracts\Repositories\DepartmentRepository::class, \App\Repositories\Eloquents\DepartmentRepositoryEloquent::class);
$this->app->bind(\App\Contracts\Repositories\BookRepository::class, \App\Repositories\Eloquents\BookRepositoryEloquent::class);
$this->app->bind(\App\Contracts\Repositories\DocumentTypeRepository::class, \App\Repositories\Eloquents\DocumentTypeRepositoryEloquent::class);
$this->app->bind(\App\Contracts\Repositories\DocumentRepository::class, \App\Repositories\Eloquents\DocumentRepositoryEloquent::class);
$this->app->bind(\App\Contracts\Repositories\TitleRepository::class, \App\Repositories\Eloquents\TitleRepositoryEloquent::class);
$this->app->bind(\App\Contracts\Repositories\SignerRepository::class, \App\Repositories\Eloquents\SignerRepositoryEloquent::class);
$this->app->bind(\App\Contracts\Repositories\AttachmentRepository::class, \App\Repositories\Eloquents\AttachmentRepositoryEloquent::class);
$this->app->bind(\App\Contracts\Repositories\RoleRepository::class, \App\Repositories\Eloquents\RoleRepositoryEloquent::class);
$this->app->bind(\App\Contracts\Repositories\PermissionRepository::class, \App\Repositories\Eloquents\PermissionRepositoryEloquent::class);
$this->app->bind(\App\Contracts\Repositories\OrganizeRepository::class, \App\Repositories\Eloquents\OrganizeRepositoryEloquent::class);
//:end-bindings:
}
}

View File

@@ -0,0 +1,80 @@
<?php
namespace App\Providers;
use Illuminate\Foundation\Support\Providers\RouteServiceProvider as ServiceProvider;
use Illuminate\Support\Facades\Route;
class RouteServiceProvider extends ServiceProvider
{
/**
* This namespace is applied to your controller routes.
*
* In addition, it is set as the URL generator's root namespace.
*
* @var string
*/
protected $namespace = 'App\Http\Controllers';
/**
* The path to the "home" route for your application.
*
* @var string
*/
public const HOME = '/home';
/**
* Define your route model bindings, pattern filters, etc.
*
* @return void
*/
public function boot()
{
//
parent::boot();
}
/**
* Define the routes for the application.
*
* @return void
*/
public function map()
{
$this->mapApiRoutes();
$this->mapWebRoutes();
//
}
/**
* Define the "web" routes for the application.
*
* These routes all receive session state, CSRF protection, etc.
*
* @return void
*/
protected function mapWebRoutes()
{
Route::middleware('web')
->namespace($this->namespace)
->group(base_path('routes/web.php'));
}
/**
* Define the "api" routes for the application.
*
* These routes are typically stateless.
*
* @return void
*/
protected function mapApiRoutes()
{
Route::prefix('api')
->middleware('api')
->namespace($this->namespace)
->group(base_path('routes/api.php'));
}
}