mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-10-31 03:57:29 -04:00 
			
		
		
		
	- Added 'currencies' variable to portal compoer - Added verification logic to StripePaymentDriver - Fixed 'CreditCard' data array with failures - 'verification' translations - ACH verification views - Verification routes
		
			
				
	
	
		
			74 lines
		
	
	
		
			2.3 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			74 lines
		
	
	
		
			2.3 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\Models\ClientContact;
 | |
| 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();
 | |
|         $data['currencies'] = TranslationHelper::getCurrencies();
 | |
| 
 | |
|         $data['multiple_contacts'] = ClientContact::where('email', auth('contact')->user()->email)->whereNotNull('email')->distinct('company_id')->get();
 | |
| 
 | |
|         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;
 | |
|     }
 | |
| }
 |