Add settings page

This commit is contained in:
2020-08-30 23:06:01 +01:00
parent 535a2c3973
commit ca82f5882d
10 changed files with 318 additions and 4 deletions

View File

@@ -0,0 +1,31 @@
<?php
namespace App\Providers;
use Illuminate\Support\ServiceProvider;
use App;
class OptionsProvider extends ServiceProvider
{
/**
* Register services.
*
* @return void
*/
public function register()
{
//
}
/**
* Bootstrap services.
*
* @return void
*/
public function boot()
{
App::bind('sm-options', function (){
return new App\Helpers\Options();
});
}
}