1use Illuminate\Support\Facades\Blade;
2
3/**
4 * Bootstrap any application services.
5 *
6 * @return void
7 */
8public function boot()
9{
10 Blade::if('disk', function ($value) {
11 return config('filesystems.default') === $value;
12 });
13}