ultimatepos/Modules/Project/Resources/views/activity/partials/task_activity.blade.php

59 lines
1.3 KiB
PHP

<table class="table table-hover">
<caption>
@lang('project::lang.updated_values')
</caption>
<thead>
<tr>
<th class="col-md-2">
@lang('project::lang.field')
</th>
<th class="col-md-5">
@lang('project::lang.old_value')
</th>
<th class="col-md-5">
@lang('project::lang.new_value')
</th>
</tr>
</thead>
<tbody>
@foreach($activity->properties['attributes'] as $key => $value)
<tr>
@if($key == 'subject' || $key == 'start_date' || $key == 'due_date' || $key == 'priority' || $key == 'status' || $key == 'description')
<td>
{{$label [$key]}}
</td>
<td>
@if($key == 'subject' || $key == 'description')
{!! $activity->properties['old'][$key] !!}
@elseif($key == 'start_date' || $key == 'due_date')
@format_date($activity->properties['old'][$key])
@elseif($key == 'status' || $key == 'priority')
{{$status_and_priority[$activity->properties['old'][$key]]}}
@endif
</td>
<td>
@if($key == 'subject' || $key == 'description')
{!! $value !!}
@elseif($key == 'start_date' || $key == 'due_date')
@format_date($value)
@elseif($key == 'status' || $key == 'priority')
{{$status_and_priority[$value]}}
@endif
</td>
@endif
</tr>
@endforeach
</tbody>
</table>