@if (Session::has('success'))
{{ Session::get('success') }}
@endif
@if (Session::has('error'))
{{ Session::get('error') }}
@endif
Name
|
Priority
|
Type |
Asignee |
Created By |
Total Cost |
Action |
@if ($task->count() > 0)
@php
$total_amount = 0;
@endphp
@foreach ($task as $key => $parent_list)
{{ $parent_list->text }}
|
{{ Ucfirst($parent_list->task_priority) }}
|
{{ Ucfirst($parent_list->task_type) }}
|
- |
- |
{{ number_format($parent_list->total_cost, 2) }}
|
@if ($parent_list->node_name == 'leaf')
{{-- --}}
{{--
--}}
{{--
--}}
@else
{{ '-' }}
@endif
|
@if (count($parent_list->childs))
@include('procurement.work-order.child-layout.manage-list-child',
['childs' => $parent_list->childs])
@endif
@if ($loop->last)
Subtotal : |
{{ number_format($parent_list->total_cost, 2) }}
|
@endif
@endforeach
@endif