mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-09 20:52:56 +01:00
55 lines
1.1 KiB
PHP
55 lines
1.1 KiB
PHP
<?php
|
|
|
|
namespace App\Providers;
|
|
|
|
use Illuminate\Support\ServiceProvider;
|
|
|
|
class ComposerServiceProvider extends ServiceProvider
|
|
{
|
|
/**
|
|
* Register bindings in the container.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function boot()
|
|
{
|
|
view()->composer(
|
|
[
|
|
'accounts.details',
|
|
'clients.edit',
|
|
'vendors.edit',
|
|
'payments.edit',
|
|
'invoices.edit',
|
|
'expenses.edit',
|
|
'accounts.localization',
|
|
'payments.credit_card',
|
|
],
|
|
'App\Http\ViewComposers\TranslationComposer'
|
|
);
|
|
|
|
view()->composer(
|
|
[
|
|
'header',
|
|
'tasks.edit',
|
|
],
|
|
'App\Http\ViewComposers\AppLanguageComposer'
|
|
);
|
|
|
|
view()->composer(
|
|
[
|
|
'public.header',
|
|
],
|
|
'App\Http\ViewComposers\ClientPortalHeaderComposer'
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Register the service provider.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function register()
|
|
{
|
|
}
|
|
}
|