@extends('layouts.backend') @section('styles') @endsection @section('page-header')

{{$project->name}}

@endsection @section('content')
{{$project->name}}
2 open tasks, 5 tasks completed

{!! $project->description !!}

Uploaded files
    @if (!empty($project->files)) @foreach ($project->files as $file)
  • {{$file}}
    Size: {{is_file(asset('storage/projects/'.$project->name.'/'.$file)) ? \Storage::size(public_path('storage/projects/'.$project->name.'/'.$file)): ''}}
  • @endforeach @endif
Uploaded image files
@if (!empty($project->files)) @foreach ($project->files as $file) @php $imageExtensions = ['jpg', 'jpeg', 'gif', 'png', 'bmp', 'svg', 'svgz', 'cgm', 'djv', 'djvu', 'ico', 'ief','jpe', 'pbm', 'pgm', 'pnm', 'ppm', 'ras', 'rgb', 'tif', 'tiff', 'wbmp', 'xbm', 'xpm', 'xwd']; $explodeImage = explode('.', asset('storage/projects/'.$project->name.'/'.$file)); $extension = end($explodeImage); @endphp @if (in_array($extension, $imageExtensions))
{{$file}}
@endif @endforeach @endif
  • check Patient appointment booking person_add delete
  • check Appointment booking with payment gateway person_add delete
  • check Doctor available module person_add delete
  • check Patient and Doctor video conferencing person_add delete
  • check Private chat module person_add delete
  • check Patient Profile add person_add delete
Project details
Cost: ${{$project->rate}}
Created: {{date_format(date_create($project->created_at),"d M, Y")}}
Deadline: {{date_format(date_create($project->end_date),"d M, Y")}}
Priority: {{$project->priority}}

Progress {{$project->progress}}%

Assigned Leader
Assigned users
@endsection @section('scripts') @endsection