mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-08 20:22:42 +01:00
65 lines
1.4 KiB
PHP
65 lines
1.4 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',
|
|
'invited.details',
|
|
],
|
|
'App\Http\ViewComposers\TranslationComposer'
|
|
);
|
|
|
|
view()->composer(
|
|
[
|
|
'header',
|
|
'tasks.edit',
|
|
],
|
|
'App\Http\ViewComposers\AppLanguageComposer'
|
|
);
|
|
|
|
view()->composer(
|
|
[
|
|
'public.header',
|
|
],
|
|
'App\Http\ViewComposers\ClientPortalHeaderComposer'
|
|
);
|
|
|
|
view()->composer(
|
|
[
|
|
'proposals.edit',
|
|
'proposals.templates.edit',
|
|
'proposals.snippets.edit',
|
|
],
|
|
'App\Http\ViewComposers\ProposalComposer'
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Register the service provider.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function register()
|
|
{
|
|
}
|
|
}
|