@if(!$spentMaterial->isEmpty())
| {{__('Code')}} |
{{__('Material')}} |
{{__('Quantity')}} |
@if($isSuperAdmin)
|
@endif
@foreach($spentMaterial as $mat)
| {{$mat->code}} |
{{$mat->material}} |
{{$mat->quantity}} |
@if($isSuperAdmin)
|
@endif
@endforeach
@endif
@if(!$siteWorks->isEmpty())
| {{(__('Code'))}} |
{{(__('Works'))}} |
{{(__('Unit'))}} |
{{(__('Quantity'))}} |
@if($isSuperAdmin || $isAdmin)
{{(__('Price'))}} |
{{(__('Total'))}} |
|
@endif
@foreach($siteWorks as $work)
| {{$work->code}} |
{{$work->work}} |
{{$work->unit_short}} |
{{$work->quantity}} |
@if($isSuperAdmin || $isAdmin)
{{$price}} |
{{$work->quantity*$price}} |
@if($isSuperAdmin)
|
@endif
@endif
@endforeach
@if($isSuperAdmin || $isAdmin)
|
|
|
|
{{__("Total")}}: |
{{$total}} |
|
@endif
@endif
@if(!$comments->isEmpty())
@foreach($comments as $br=>$comment)
{{__('comment')}} {{$br+1}}
{{$comment->comment}}
{{$comment->ime.' '.$comment->prezime}} {{date('d.m.Y. H:i:s', strtotime($comment->created_at))}}
@if($isSuperAdmin)
@endif
@endforeach
@endif
@if(!$images->isEmpty())
@foreach($images as $img)
@endforeach
@endif
@if(!$files->isEmpty())
@foreach($files as $file)
@endforeach
@endif
@endsection