@extends('layouts.app') @section('title', 'Projects') @section('pages')
@if (isset($product->description) && $product->description != '')
Item Name: {{ $product->name }}

{{ $product->description }}

@endif
Project Details

Title {{ ucfirst($data->title) }} {{ $data->code }}
Project Type {{ ucfirst($data->getProjectType->title) ?? 'N/A' }}
Departments @if ($data->getDepartments) @foreach ($data->getDepartments as $department) {{ $department->name }}, @endforeach @else Null @endif
About {{ $data->about }}
Additional Details

receive Date {{ $data->receive_date }}
start date {{ $data->start_date }}
Dead Line Date {{ $data->dead_line_date }}
@if (auth()->user()->can('project-budget-list'))
@endif @if (auth()->user()->can('project-attachment-list'))
@endif @if (auth()->user()->can('project-requirement-list'))
@endif @if (auth()->user()->can('project-team-list'))
@endif
@endsection @section('js') @endsection