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

{{$item->name or ''}}

{{!is_null($item->projectsPackage) ? $item->projectsPackage->serial : ''}}
@include('timeline', [ 'initComments'=>[ 'user' => $item->userDraft, 'comments' => $item->commentSectionProjectInit, 'available_status' => in_array('draft', $packageStatusesPermanames) ], 'designComments'=>[ 'user' => $item->userDesign, 'comments' => $item->commentSectionProjectDesign, 'available_status' => in_array('design', $packageStatusesPermanames) ], 'layoutComments'=>[ 'user' => $item->userLayout, 'comments' => $item->commentSectionProjectLayout, 'available_status' => in_array('layout', $packageStatusesPermanames) ] ]) @if($item->projectStatus->started == 1) @if($item->getEditableLayoutAttribute() && isset($item['project_id']))
@endif @if($item->getEditableLayoutAttribute())
{{trans('e.save_and_finish_round')}}
@endif @else
{{trans('e.start_edit')}}
@endif
@endsection