Some adjustments to show customer's logo.

This commit is contained in:
2025-02-01 13:05:29 +01:00
parent 922f3ae175
commit ba92198750
7 changed files with 36 additions and 7 deletions

View File

@@ -2,6 +2,7 @@
namespace App\Providers;
use App\View\Composers\OptionLogo;
use App\View\Composers\TaxDropdown;
use Illuminate\Support\Facades\URL;
use Illuminate\Support\Facades\View;
@@ -34,6 +35,7 @@ class AppServiceProvider extends ServiceProvider
public function boot(): void
{
View::composer('components.tax-dropdown', TaxDropdown::class);
View::composer('components.company-logo', OptionLogo::class);
Number::useLocale(config('app.locale'));
Number::useCurrency(config('app.currency'));