Skip to content
This repository was archived by the owner on Jan 5, 2019. It is now read-only.

Commit ec57b86

Browse files
author
Mario Basic
committed
Added category to overview.
1 parent 7e3656f commit ec57b86

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

resources/views/home.blade.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@
3030
<th>Date</th>
3131
<th>Service</th>
3232
<th>Client</th>
33+
<th>Category</th>
3334
<th>Cost</th>
3435
<th>Offer sent</th>
3536
<th>Payment received</th>
@@ -40,6 +41,7 @@
4041
<td>{{ $occurrence->occurs_at->format('d.m.Y') }}</td>
4142
<td>{{ $occurrence->service->title }}</td>
4243
<td>{{ $occurrence->service->client->name }}</td>
44+
<td>{{ $occurrence->service->category->name or 'n/a' }}</td>
4345
<td>{{ $occurrence->service->formatted_cost }}</td>
4446
<td class="kyle-change-boolean"
4547
data-url="/api/v1/occurrences/{{ $occurrence->id }}/offer"
@@ -80,6 +82,7 @@
8082
<th>Date</th>
8183
<th>Service</th>
8284
<th>Client</th>
85+
<th>Category</th>
8386
<th>Cost</th>
8487
<th>Offer sent</th>
8588
<th>Payment received</th>
@@ -90,6 +93,7 @@
9093
<td>{{ $occurrence->occurs_at->format('d.m.Y') }}</td>
9194
<td>{{ $occurrence->service->title }}</td>
9295
<td>{{ $occurrence->service->client->name }}</td>
96+
<td>{{ $occurrence->service->category->name or 'n/a' }}</td>
9397
<td>{{ $occurrence->service->formatted_cost }}</td>
9498
<td class="kyle-change-boolean"
9599
data-url="/api/v1/occurrences/{{ $occurrence->id }}/offer"

0 commit comments

Comments
 (0)