@extends('layouts.master') @section('content')
@include('partials.clientheader') @include('partials.userheader', ['changeUser' => false])
@foreach($statuses as $status)
{{ __($status->title)}}
    @foreach($tasks as $task)
  • @if($task->status_id == $status->id)

    {{$task->title}}

    {!! str_limit($task->description, 154, '...') !!}
    @endif @endforeach
@endforeach

@lang('Project completion progress')

{{$completionPercentage}}%

@lang('Collaborators')

    @foreach($collaborators as $collaborator)
  • @endforeach
@include('partials.comments', ['subject' => $project])

@lang('Information')

@include('projects._sidebar')
@if(Entrust::can('project-upload-files') && $filesystem_integration)

{{ __('All Files') }}

@if($files->count() == 0)

@lang('No files')

@endif
@foreach($files as $file)
{{$file->original_filename}}
{{$file->size}} MB
@endforeach
@endif
@if(Entrust::can('project-update-deadline')) @endif @endsection @push('scripts') @endpush