diff --git a/resources/views/budgets/index.blade.php b/resources/views/budgets/index.blade.php index 13b9f8439a..6d1642f930 100644 --- a/resources/views/budgets/index.blade.php +++ b/resources/views/budgets/index.blade.php @@ -5,12 +5,13 @@
+ {{Session::get('start', \Carbon\Carbon::now()->startOfMonth())->format('F Y')}}
- Budgeted: {{Amount::format(300)}} + Budgeted:
Available in {{Session::get('start', \Carbon\Carbon::now()->startOfMonth())->format('F Y')}}: @@ -49,11 +50,10 @@
- - @include('partials.date_nav')
+ Transactions without a budget
@@ -71,6 +71,7 @@
+ @if(isset($budget->currentRep)) {{{$budget->name}}} @else @@ -135,10 +136,11 @@ diff --git a/resources/views/budgets/noBudget.blade.php b/resources/views/budgets/noBudget.blade.php index cda701ca37..d7653b58a0 100644 --- a/resources/views/budgets/noBudget.blade.php +++ b/resources/views/budgets/noBudget.blade.php @@ -1,12 +1,6 @@ @extends('layouts.default') @section('content') {!! Breadcrumbs::renderIfExists(Route::getCurrentRoute()->getName()) !!} -
-
- - @include('partials.date_nav') -
-
diff --git a/resources/views/categories/noCategory.blade.php b/resources/views/categories/noCategory.blade.php index dea483315f..b256c60423 100644 --- a/resources/views/categories/noCategory.blade.php +++ b/resources/views/categories/noCategory.blade.php @@ -1,12 +1,6 @@ @extends('layouts.default') @section('content') {{ Breadcrumbs::renderIfExists(Route::getCurrentRoute()->getName()) }} -
-
- - @include('partials.date_nav') -
-
diff --git a/resources/views/categories/show.blade.php b/resources/views/categories/show.blade.php index b99ffb9cc5..627976e872 100644 --- a/resources/views/categories/show.blade.php +++ b/resources/views/categories/show.blade.php @@ -5,6 +5,7 @@
+ Overview
@@ -15,6 +16,7 @@
+ Overview
@@ -28,6 +30,7 @@
+ Transactions
diff --git a/resources/views/index.blade.php b/resources/views/index.blade.php index dc7ac7fb86..332ae5fb30 100644 --- a/resources/views/index.blade.php +++ b/resources/views/index.blade.php @@ -65,8 +65,6 @@
- - @include('partials.date_nav')
diff --git a/resources/views/reports/budget.blade.php b/resources/views/reports/budget.blade.php index b4116b1f72..55e9ae73db 100644 --- a/resources/views/reports/budget.blade.php +++ b/resources/views/reports/budget.blade.php @@ -14,6 +14,7 @@
+ Accounts
@@ -49,6 +50,7 @@
+ Budgets
diff --git a/resources/views/reports/index.blade.php b/resources/views/reports/index.blade.php index 15aa572bab..b90f7289c6 100644 --- a/resources/views/reports/index.blade.php +++ b/resources/views/reports/index.blade.php @@ -14,6 +14,7 @@
+ Yearly reports
@@ -29,6 +30,7 @@
+ Monthly reports
@@ -49,6 +51,7 @@
+ Budget reports
diff --git a/resources/views/reports/month.blade.php b/resources/views/reports/month.blade.php index b2da3d069f..7b5c81a716 100644 --- a/resources/views/reports/month.blade.php +++ b/resources/views/reports/month.blade.php @@ -13,7 +13,10 @@
-
Income
+
+ + Income +
@foreach($income as $entry) @@ -57,7 +60,10 @@
-
Expenses (top 10)
+
+ + Expenses (top 10) +
@foreach($expenses as $id => $expense) @@ -80,7 +86,10 @@
-
Sums
+
+ + Sums +
-
Budgets
+
+ + Budgets +
@@ -150,7 +162,10 @@
-
Categories
+
+ + Categories +
Budget
@@ -181,7 +196,10 @@
-
Accounts
+
+ + Accounts +
Category
-
Piggy banks
+
+ + Piggy banks +
Body
-
Repeated expenses
+
+ + Repeated expenses +
Body
@@ -228,7 +252,10 @@
-
Bills
+
+ + Bills +
Body
@@ -236,7 +263,10 @@
-
Outside of budgets
+
+ + Outside of budgets +
Body
diff --git a/resources/views/reports/year.blade.php b/resources/views/reports/year.blade.php index 35955bcd70..8f4ae376da 100644 --- a/resources/views/reports/year.blade.php +++ b/resources/views/reports/year.blade.php @@ -14,6 +14,7 @@
+ Income vs. expenses
@@ -24,6 +25,7 @@
+ Income vs. expenses
@@ -37,6 +39,7 @@
+ Account balance
@@ -74,6 +77,7 @@
+ Income vs. expense
+ Income
@@ -129,6 +134,7 @@
+ Expenses
@@ -152,6 +158,7 @@
+ Budgets
diff --git a/resources/views/transactions/show.blade.php b/resources/views/transactions/show.blade.php index ae4b420027..d8134e8a56 100644 --- a/resources/views/transactions/show.blade.php +++ b/resources/views/transactions/show.blade.php @@ -5,6 +5,7 @@
+ Metadata
@@ -54,6 +55,7 @@ @endif
+ Related transactions
@if($journal->transactiongroups()->count() == 0) @@ -85,21 +87,6 @@ @endforeach - {{-- -
- - - - --}} @endforeach
- - - {{{$jrnl->description}}} - @foreach($jrnl->transactions()->get() as $t) - @if($t->amount > 0) - {!! Amount::formatTransaction($t) !!} - @endif - @endforeach -
@@ -116,6 +103,15 @@ @foreach($journal->transactions as $t)
+ @if($t->account->accounttype->type == 'Asset account') + + @endif + @if($t->account->accounttype->type == 'Expense account') + + @endif + @if($t->account->accounttype->type == 'Revenue account') + + @endif {{{$t->account->name}}}
{{{$t->account->accounttype->description}}}