From 2b0c67c26381a55ade9104438386fef646b5c17e Mon Sep 17 00:00:00 2001 From: snipe Date: Sun, 18 Aug 2024 15:51:00 +0100 Subject: [PATCH] Load the icon helper Signed-off-by: snipe --- config/app.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/config/app.php b/config/app.php index 060d82d525..bc74b4dd05 100755 --- a/config/app.php +++ b/config/app.php @@ -372,7 +372,9 @@ return [ 'Google2FA' => PragmaRX\Google2FALaravel\Facade::class, 'Image' => Intervention\Image\ImageServiceProvider::class, 'Carbon' => Carbon\Carbon::class, - 'Helper' => App\Helpers\Helper::class, // makes it much easier to use 'Helper::blah' in blades (which is where we usually use this) + 'Helper' => App\Helpers\Helper::class, + // makes it much easier to use 'Helper::blah' in blades (which is where we usually use this) + 'Icon' => App\Helpers\IconHelper::class, 'Socialite' => Laravel\Socialite\Facades\Socialite::class,