From f237bd958de7537d2bcb0a50f68f4d64a36559c3 Mon Sep 17 00:00:00 2001 From: David Bomba Date: Tue, 23 Jul 2019 09:25:53 +1000 Subject: [PATCH] fix spacing between sidebar icons and link text --- app/Http/Controllers/ClientPortal/InvoiceController.php | 2 +- app/Http/ViewComposers/PortalComposer.php | 4 ++-- resources/views/portal/default/sidebar.blade.php | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/app/Http/Controllers/ClientPortal/InvoiceController.php b/app/Http/Controllers/ClientPortal/InvoiceController.php index ecdd48133d..46a1328f3e 100644 --- a/app/Http/Controllers/ClientPortal/InvoiceController.php +++ b/app/Http/Controllers/ClientPortal/InvoiceController.php @@ -9,7 +9,7 @@ * @license https://opensource.org/licenses/AAL */ -namespace App\Http\Controllers; +namespace App\Http\Controllers\ClientPortal; use App\Filters\InvoiceFilters; use App\Jobs\Entity\ActionEntity; diff --git a/app/Http/ViewComposers/PortalComposer.php b/app/Http/ViewComposers/PortalComposer.php index 84c5bde777..12c5b5c32b 100644 --- a/app/Http/ViewComposers/PortalComposer.php +++ b/app/Http/ViewComposers/PortalComposer.php @@ -52,8 +52,8 @@ class PortalComposer $data = []; - $data[] = [ 'title' => ctrans('texts.dashboard'), 'url' => 'client.dashboard', 'icon' => 'fa fa-tachometer']; - $data[] = [ 'title' => ctrans('texts.invoices'), 'url' => 'client.invoices.index', 'icon' => 'fa fa-file-excel-o']; + $data[] = [ 'title' => ctrans('texts.dashboard'), 'url' => 'client.dashboard', 'icon' => 'fa fa-tachometer fa-fw fa-2x']; + $data[] = [ 'title' => ctrans('texts.invoices'), 'url' => 'client.invoices.index', 'icon' => 'fa fa-file-pdf-o fa-fw fa-2x']; return $data; } diff --git a/resources/views/portal/default/sidebar.blade.php b/resources/views/portal/default/sidebar.blade.php index d8713fcb8d..7191b18f30 100644 --- a/resources/views/portal/default/sidebar.blade.php +++ b/resources/views/portal/default/sidebar.blade.php @@ -4,8 +4,8 @@