@extends('layouts.app') @section('content')
@include('project.project-menu')
Description
{!! $project->description !!}
Uploaded files
@if( auth()->user()->role_id == 1 || auth()->user()->role_id == 2 || auth()->user()->role_id == 3 || auth()->user()->role_id == 4 || auth()->user()->role_id == 5)
Project details
@if($project->type=='fixed') @endif
Created by: {{ucfirst($project->first_name.' '.$project->last_name)}}
Status: {{ $project->status}}
Type: @if($project->type=='product') Product (Recurring work) @endif @if($project->type=='fixed') Fixed Time @endif
Created at: {{ date('d, M, Y',strtotime($project->created_at))}}
Actual start at: {{ date('d, M, Y',strtotime($project->actual_start_date))}}
Deadline: {{ date('d, M, Y',strtotime($project->end_date))}}
Total Days: {{ $project->total_days}}
Important Notice
@endif
@endsection