PMCORE-1761 It's not regenerate all my case records in my Report Table

This commit is contained in:
Roly Rudy Gutierrez Pinto
2020-07-07 21:28:18 -04:00
parent 20441a26a0
commit 1592eedf6b
2 changed files with 34 additions and 0 deletions

View File

@@ -0,0 +1,29 @@
<?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()
{
//is important for propel sql query builder
setlocale(LC_NUMERIC, 'C');
}
}

View File

@@ -26,6 +26,11 @@ return [
Illuminate\Notifications\NotificationServiceProvider::class,
Illuminate\Bus\BusServiceProvider::class,
Illuminate\Redis\RedisServiceProvider::class,
/*
* Application Service Providers...
*/
App\Providers\AppServiceProvider::class,
],
'aliases' => [