mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-06 03:02:34 +01:00
91cf1cc1f2
* Remove \Log::, fixes for tests, and fixes for migration * Debugging migration
70 lines
2.1 KiB
PHP
70 lines
2.1 KiB
PHP
<?php
|
|
/**
|
|
* Invoice Ninja (https://invoiceninja.com)
|
|
*
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
*
|
|
* @copyright Copyright (c) 2020. Invoice Ninja LLC (https://invoiceninja.com)
|
|
*
|
|
* @license https://opensource.org/licenses/AAL
|
|
*/
|
|
|
|
namespace App\Http\ViewComposers;
|
|
|
|
use App\Utils\TranslationHelper;
|
|
use Illuminate\View\View;
|
|
|
|
/**
|
|
* Class PortalComposer
|
|
* @package App\Http\ViewComposers
|
|
*/
|
|
class PortalComposer
|
|
{
|
|
|
|
/**
|
|
* Bind data to the view.
|
|
*
|
|
* @param View $view
|
|
* @return void
|
|
*/
|
|
public function compose(View $view) :void
|
|
{
|
|
$view->with($this->portalData());
|
|
}
|
|
|
|
/**
|
|
* @return array
|
|
*/
|
|
private function portalData() :array
|
|
{
|
|
if (!auth()->user()) {
|
|
return [];
|
|
}
|
|
|
|
$data['sidebar'] = $this->sidebarMenu();
|
|
$data['header'] = [];
|
|
$data['footer'] = [];
|
|
$data['countries'] = TranslationHelper::getCountries();
|
|
$data['company'] = auth()->user()->company;
|
|
$data['client'] = auth()->user()->client;
|
|
$data['settings'] = auth()->user()->client->getMergedSettings();
|
|
|
|
return $data;
|
|
}
|
|
|
|
private function sidebarMenu() :array
|
|
{
|
|
$data = [];
|
|
|
|
$data[] = [ 'title' => ctrans('texts.dashboard'), 'url' => 'client.dashboard', 'icon' => 'activity'];
|
|
$data[] = [ 'title' => ctrans('texts.invoices'), 'url' => 'client.invoices.index', 'icon' => 'file-text'];
|
|
$data[] = [ 'title' => ctrans('texts.recurring_invoices'), 'url' => 'client.recurring_invoices.index', 'icon' => 'file'];
|
|
$data[] = [ 'title' => ctrans('texts.payments'), 'url' => 'client.payments.index', 'icon' => 'credit-card'];
|
|
$data[] = [ 'title' => ctrans('texts.payment_methods'), 'url' => 'client.payment_methods.index', 'icon' => 'shield'];
|
|
$data[] = [ 'title' => ctrans('texts.quotes'), 'url' => 'client.quotes.index', 'icon' => 'align-left'];
|
|
$data[] = [ 'title' => ctrans('texts.credits'), 'url' => 'client.credits.index', 'icon' => 'credit-card'];
|
|
|
|
return $data;
|
|
}
|
|
}
|