Fix timezone list HTML Escaped

This commit is contained in:
Kevin
2018-08-24 23:16:23 +08:00
parent 543026da18
commit a9536064d3
3 changed files with 138 additions and 0 deletions

View File

@@ -0,0 +1,30 @@
<?php
namespace App\Providers;
use App\Support\TimezonelistExtended;
use Illuminate\Support\ServiceProvider;
class ExtendedTimezonelistProvider extends ServiceProvider
{
/**
* Bootstrap services.
*
* @return void
*/
public function boot()
{
}
/**
* Register services.
*
* @return void
*/
public function register()
{
$this->app->singleton('timezonelist', function ($app) {
return new TimezonelistExtended;
});
}
}