-
Notifications
You must be signed in to change notification settings - Fork 67
/
Copy pathOptionsServiceProvider.php
53 lines (44 loc) · 1.27 KB
/
OptionsServiceProvider.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<?php
namespace Appstract\Options;
use Illuminate\Support\Collection;
use Illuminate\Support\Facades\Blade;
use Illuminate\Support\ServiceProvider;
class OptionsServiceProvider extends ServiceProvider
{
protected $options;
/**
* Bootstrap the application services.
*/
public function boot()
{
if ($this->app->runningInConsole()) {
$this->publishes([
__DIR__.'/../database/migrations' => database_path('migrations'),
], 'migrations');
$this->commands([
\Appstract\Options\Console\OptionSetCommand::class,
]);
}
}
/**
* Register the application services.
*/
public function register()
{
$this->app->bind('option', \Appstract\Options\Option::class);
$this->directives()->each(function ($item, $key) {
Blade::directive($key, $item);
});
}
private function directives(): Collection
{
return collect([
'option' => function ($key, $default = null) {
return "<?php echo option({$key}, {$default}); ?>";
},
'optionExists' => function ($key) {
return "<?php if (option_exists({$key})) : ?>";
},
]);
}
}