#51 2 Business Points edit / add, user dashboard

This commit is contained in:
Kevin Adametz 2022-07-22 13:43:24 +02:00
parent 263cf93a1e
commit dfd049aaa9
25 changed files with 1291 additions and 381 deletions

View file

@ -36,6 +36,8 @@
<th>Points</th>
<th>Umsatz netto</th>
<th>Status</th>
<th>Berater</th>
</tr>
</thead>
<tbody>
@ -45,10 +47,16 @@
<td>{{ $value->user_sales_volume->points }}</td>
<td>{{ formatNumber($value->user_sales_volume->total_net) }} &euro;</td>
<td>{{ $value->user_sales_volume->getStatusType() }}</td>
<td>@if($value->user_sales_volume->user)
{{ $value->user_sales_volume->user->getFullName() }}
@else
nicht zugewiesen
@endif
</td>
</tr>
@if($value->user_sales_volume->message)
<tr>
<td colspan="4">{{ $value->user_sales_volume->message }}</td>
<td colspan="5">{{ $value->user_sales_volume->message }}</td>
</tr>
@endif
@endif