@extends('tpl') @section('body')

Cosul coletelor

@if(isset($items) && count($items)) @include('searchForm')
@if(count($items) > 0) @endif @foreach($items as $key => $item) @if(!$item->projects->isEmpty()) @endif @endforeach
{{trans('e.serial')}} Nume colet Nume client Data stergerii
{{$item->serial or '' }} {{$item->name}} {{isset($item->client) ? $item->client->name : ''}} {{date('d/m/Y H:i', strtotime($item->updated_at))}}
@foreach($item->projects as $project) @endforeach
Schita proiect Nume proiect Etapa parcursa
{{$project->name or ''}} {{trans('e.'.$project->status)}}
@else
{{trans('e.empty_list')}}
@endif
@endsection