⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.220
Server IP:
178.33.27.10
Server:
Linux cpanel.dev-unit.com 3.10.0-1160.119.1.el7.x86_64 #1 SMP Tue Jun 4 14:43:51 UTC 2024 x86_64
Server Software:
Apache/2.4.62 (Unix) OpenSSL/1.0.2k-fips
PHP Version:
8.2.25
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
home
/
id
/
erp.dev-unit.com
/
storage
/
framework
/
views
/
View File Name :
6377718e766c53557bc3423a03c6c48d.php
<?php $__env->startSection('page-title'); ?> <?php echo e(__('Project Detail')); ?> <?php $__env->stopSection(); ?> <?php $__env->startSection('page-breadcrumb'); ?> <?php echo e(__('Project Report')); ?>, <?php echo e(__('Project Details')); ?> <?php $__env->stopSection(); ?> <?php $__env->startSection('page-action'); ?> <div> <a href="#" onclick="saveAsPDFOverview()" class="btn btn-sm btn-primary" data-bs-toggle="tooltip" title="<?php echo e(__('Download')); ?>"> <i class="ti ti-file-download "></i> </a> </div> <?php $__env->stopSection(); ?> <?php $client_keyword = Auth::user()->hasRole('client') ? 'client.' : ''; ?> <?php $__env->startSection('content'); ?> <div class="row"> <!-- [ sample-page ] start --> <div class="col-sm-12"> <div class="row" id="printableArea"> <div class="col-md-6"> <div class="card report-card"> <div class="card-header"> <h5><?php echo e(__('Overview')); ?></h5> </div> <div class="card-body"> <div class="row align-items-center"> <div class="col-7"> <table class="table" id="pc-dt-simple"> <tbody> <tr class="table_border"> <th class="table_border"><?php echo e(__('Project Name')); ?>:</th> <td class="table_border"><?php echo e($project->name); ?></td> </tr> <tr> <th class="table_border"><?php echo e(__('Project Status')); ?>:</th> <td class="table_border"> <?php if($project->status == 'Finished'): ?> <div class="badge bg-success p-2 px-3"> <?php echo e(__('Finished')); ?> </div> <?php elseif($project->status == 'Ongoing'): ?> <div class="badge bg-secondary p-2 px-3"> <?php echo e(__('Ongoing')); ?></div> <?php else: ?> <div class="badge bg-warning p-2 px-3"> <?php echo e(__('OnHold')); ?></div> <?php endif; ?> </td> </tr> <tr role="row"> <th class="table_border"><?php echo e(__('Start Date')); ?>:</th> <td class="table_border"> <?php echo e(company_date_formate($project->start_date)); ?></td> </tr> <tr> <th class="table_border"><?php echo e(__('Due Date')); ?>:</th> <td class="table_border"><?php echo e(company_date_formate($project->end_date)); ?> </td> </tr> <tr> <th class="table_border"><?php echo e(__('Total Members')); ?>:</th> <td class="table_border"> <?php echo e((int) $project->users->count() + (int) $project->clients->count()); ?> </td> </tr> </tbody> </table> </div> <div class="col-5 "> <?php $task_percentage = $project->project_progress()['percentage']; $data = trim($task_percentage, '%'); $status = $data > 0 && $data <= 25 ? 'red' : ($data > 25 && $data <= 50 ? 'orange' : ($data > 50 && $data <= 75 ? 'blue' : ($data > 75 && $data <= 100 ? 'green' : ''))); ?> <div class="circular-progressbar p-0"> <div class="flex-wrapper"> <div class="single-chart"> <svg viewBox="0 0 36 36" class="circular-chart orange <?php echo e($status); ?>"> <path class="circle-bg" d="M18 2.0845 a 15.9155 15.9155 0 0 1 0 31.831 a 15.9155 15.9155 0 0 1 0 -31.831" /> <path class="circle" stroke-dasharray="<?php echo e($data); ?>, 100" d="M18 2.0845 a 15.9155 15.9155 0 0 1 0 31.831 a 15.9155 15.9155 0 0 1 0 -31.831" /> <text x="18" y="20.35" class="percentage"><?php echo e($data); ?>%</text> </svg> </div> </div> </div> </div> </div> </div> </div> </div> <?php $mile_percentage = $project->project_milestone_progress()['percentage']; $mile_percentage = trim($mile_percentage, '%'); ?> <div class="col-md-6"> <div class="card report-card"> <div class="card-header" style="padding: 25px 35px !important;"> <div class="d-flex justify-content-between align-items-center"> <div class="row"> <h5 class="mb-0"><?php echo e(__('Milestone Progress')); ?></h5> </div> </div> </div> <div class="card-body"> <div class="d-flex align-items-start"> </div> <div id="milestone-chart"></div> </div> </div> </div> <div class="col-md-6"> <div class="card report-chart-card"> <div class="card-header"> <div class="float-end"> <a href="#" data-bs-toggle="tooltip" data-bs-placement="top" title="Refferals"><i class=""></i></a> </div> <h5><?php echo e(__('Task Priority')); ?></h5> </div> <div class="card-body"> <div class="row align-items-center"> <div class="col-12"> <div id='chart_priority'></div> </div> </div> </div> </div> </div> <div class="col-md-6"> <div class="card report-chart-card"> <div class="card-header"> <div class="float-end"> <a href="#" data-bs-toggle="tooltip" data-bs-placement="top" title="Refferals"><i class=""></i></a> </div> <h5><?php echo e(__('Task Status')); ?></h5> </div> <div class="card-body"> <div class="row align-items-center"> <div class="col-12"> <div id="chart"></div> </div> </div> </div> </div> </div> <div class="col-md-5"> <div class="card report-card"> <div class="card-header"> <h5><?php echo e(__('Users')); ?></h5> </div> <div class="card-body table-border-style top-10-scroll"> <div class="table-responsive"> <table class=" table"> <thead> <tr> <th><?php echo e(__('Name')); ?></th> <th><?php echo e(__('Assigned Tasks')); ?></th> <th><?php echo e(__('Done Tasks')); ?></th> </tr> </thead> <tbody> <?php $__currentLoopData = $project->users; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $user): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <?php $hours_format_number = 0; $total_hours = 0; $hourdiff_late = 0; $esti_late_hour = 0; $esti_late_hour_chart = 0; $total_user_task = Workdo\Taskly\Entities\Task::where( 'project_id', $project->id, ) ->whereRaw('FIND_IN_SET(?, assign_to) > 0', [$user->id]) ->get() ->count(); $all_task = Workdo\Taskly\Entities\Task::where( 'project_id', $project->id, ) ->whereRaw('FIND_IN_SET(?, assign_to) > 0', [$user->id]) ->get(); $total_complete_task = Workdo\Taskly\Entities\Task::join( 'stages', 'stages.id', '=', 'tasks.status', ) ->where('project_id', '=', $project->id) ->where('assign_to', '=', $user->id) ->where('stages.complete', '=', '1') ->get() ->count(); ?> <tr> <td><?php echo e($user->name); ?></td> <td><?php echo e($total_user_task); ?></td> <td><?php echo e($total_complete_task); ?></td> </tr> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> </tbody> </table> </div> </div> </div> </div> <div class="col-md-7"> <div class="card report-card"> <div class="card-header"> <h5><?php echo e(__('Milestones')); ?></h5> </div> <div class="card-body table-border-style top-10-scroll"> <div class="table-responsive"> <table class=" table "> <thead> <tr> <th> <?php echo e(__('Name')); ?></th> <th> <?php echo e(__('Progress')); ?></th> <th> <?php echo e(__('Cost')); ?></th> <th> <?php echo e(__('Status')); ?></th> <th> <?php echo e(__('Start Date')); ?></th> <th> <?php echo e(__('End Date')); ?></th> </tr> </thead> <tbody> <?php $__currentLoopData = $project->milestones; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $key => $milestone): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <tr> <td><?php echo e($milestone->title); ?></td> <td> <div class="progress_wrapper"> <div class="progress"> <div class="progress-bar" role="progressbar" style="width: <?php echo e($milestone->progress); ?>px;" aria-valuenow="55" aria-valuemin="0" aria-valuemax="100"> </div> </div> <div class="progress_labels"> <div class="total_progress"> <strong> <?php echo e($milestone->progress); ?>%</strong> </div> </div> </div> </td> <td><?php echo e($milestone->cost); ?></td> <td> <?php if($milestone->status == 'complete'): ?> <label class="badge bg-success p-2 px-3"><?php echo e(__('Complete')); ?></label> <?php else: ?> <label class="badge bg-warning p-2 px-3"><?php echo e(__('Incomplete')); ?></label> <?php endif; ?> </td> <td><?php echo e($milestone->start_date); ?></td> <td><?php echo e($milestone->end_date); ?></td> </tr> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> </tbody> </table> </div> </div> </div> </div> </div> <?php echo e(Form::open(['route' => [$client_keyword . 'project_report.show', [$project->id]], 'method' => 'GET', 'id' => 'product_service'])); ?> <div class="mt-3 mb-2 d-sm-flex align-items-center justify-content-end" id="show_filter"> <?php if(Auth::user()->hasRole('company') || Auth::user()->hasRole('client')): ?> <div class="col-3 px-2"> <?php echo e(Form::select('all_users', $users, isset($_GET['all_users']) ? $_GET['all_users'] : '', ['class' => 'form-control ', 'placeholder' => 'All Users'])); ?> </div> <?php endif; ?> <div class="col-2"> <?php echo e(Form::select('milestone_id', $milestones, isset($_GET['milestone_id']) ? $_GET['milestone_id'] : '', ['class' => 'form-control ', 'placeholder' => 'All Milestones'])); ?> </div> <div class="col-2 px-2"> <select class="select2 form-select" name="status" id="status"> <option value="" class="px-4"><?php echo e(__('All Status')); ?></option> <?php $__currentLoopData = $stages; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $stage): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <option value="<?php echo e($stage->id); ?>"><?php echo e(__($stage->name)); ?></option> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> </select> </div> <div class="col-2"> <select class="select2 form-select" name="priority" id="priority"> <option value="" class="px-4"><?php echo e(__('All Priority')); ?></option> <option value="Low"><?php echo e(__('Low')); ?></option> <option value="Medium"><?php echo e(__('Medium')); ?></option> <option value="High"><?php echo e(__('High')); ?></option> </select> </div> <div class="col-auto d-flex ms-4"> <a type="submit" class="btn btn-sm btn-primary me-2" onclick="document.getElementById('product_service').submit(); return false;" data-bs-toggle="tooltip" title="<?php echo e(__('Apply')); ?>" data-original-title="<?php echo e(__('Apply')); ?>"> <span class="btn-inner--icon"><i class="ti ti-search"></i></span> </a> <a href="<?php echo e(route($client_keyword . 'project_report.show', [$project->id])); ?>" class="btn btn-sm btn-danger " data-bs-toggle="tooltip" title="<?php echo e(__('Reset')); ?>" data-original-title="<?php echo e(__('Reset')); ?>"> <span class="btn-inner--icon"><i class="ti ti-trash-off text-white-off "></i></span> </a> </div> </div> <?php echo e(Form::close()); ?> <div class="col-md-12"> <div class="card"> <div class="card-body mt-3 mx-2"> <div class="row"> <div class="col-md-12 mt-2"> <div class="table-responsive"> <table class="table datatable pc-dt-simple table-centered table-hover mb-0 animated px-4 mt-2" id="tasks-selection-datatable"> <thead> <th><?php echo e(__('Task Name')); ?></th> <th><?php echo e(__('Milestone')); ?></th> <th><?php echo e(__('Start Date')); ?></th> <th><?php echo e(__('Due Date')); ?></th> <?php if(Auth::user()->hasRole('company') || Auth::user()->hasRole('client')): ?> <th><?php echo e(__('Assigned to')); ?></th> <?php endif; ?> <th><?php echo e(__('Priority')); ?></th> <th><?php echo e(__('Status')); ?></th> </thead> <tbody> <?php $__currentLoopData = $tasksData; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $row): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <tr> <td><?php echo $row['title']; ?></td> <td><?php echo $row['milestone']; ?></td> <td><?php echo $row['start_date']; ?></td> <td><?php echo $row['due_date']; ?></td> <?php if(Auth::user()->hasRole('company') || Auth::user()->hasRole('client')): ?> <td><?php echo $row['user_name']; ?></td> <?php endif; ?> <td><?php echo $row['priority']; ?></td> <td><?php echo $row['status']; ?></td> </tr> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> </tbody> </table> </div> </div> </div> </div> </div> </div> <div class="monthly_cashflow"> <div class="row justify-content-between mt-3 mb-3 "> <div class="col-xl-3"> <h4 class="m-b-10"><?php echo e(__('Cashflow')); ?> </h4> </div> <div class="col-xl-9"> <div class="float-end"> <a href="#" class="btn btn-sm btn-primary" onclick="saveAsPDF()"data-bs-toggle="tooltip" title="<?php echo e(__('Download')); ?>" data-original-title="<?php echo e(__('Download')); ?>"> <span class="btn-inner--icon"><i class="ti ti-download"></i></span> </a> </div> </div> </div> <div class="row justify-content-center"> <div class="col-md-12"> <div class="card"> <div class="card-body"> <form method="GET" action="<?php echo e(route('project_report.show', $project->id)); ?>" accept-charset="UTF-8" id="monthly_cashflow"> <div class="col-xl-12"> <div class="row justify-content-between"> <div class="col-xl-3"> <ul class="nav nav-pills my-3" id="pills-tab" role="tablist"> <li class="nav-item"> <a class="nav-link active" id="pills-home-tab" data-bs-toggle="pill" href="#daily-chart" role="tab" aria-controls="pills-home" aria-selected="true"><?php echo e(__('Monthly')); ?></a> </li> <li class="nav-item"> <a class="nav-link quarterly" id="pills-profile-tab" data-bs-toggle="pill" href="#" role="tab" aria-controls="pills-profile" aria-selected="true"><?php echo e(__('Quarterly')); ?></a> </li> </ul> </div> <div class="col-xl-9"> <div class="row justify-content-end align-items-center"> <div class="col-xl-3 col-lg-3 col-md-6 col-sm-12 col-12"> <div class="btn-box"> <label for="year" class="form-label"><?php echo e(__('Year')); ?></label> <?php echo e(Form::label('year', __('Year'), ['class' => 'form-label'])); ?> <?php echo e(Form::select('year', $yearList, isset($_GET['year']) ? $_GET['year'] : '', ['class' => 'form-control select'])); ?> </div> </div> <div class="col-auto d-flex mt-4"> <a href="#" class="btn btn-sm btn-primary me-2" onclick="document.getElementById('monthly_cashflow').submit(); return false;" data-bs-toggle="tooltip" title="" data-original-title="apply" data-bs-original-title="Apply"> <span class="btn-inner--icon"><i class="ti ti-search"></i></span> </a> <a href="<?php echo e(route('project_report.show', $project->id)); ?>" class="btn btn-sm btn-danger" data-bs-toggle="tooltip" title="" data-original-title="<?php echo e(__('Reset')); ?>"> <span class="btn-inner--icon"><i class="ti ti-trash-off text-white-off "></i></span> </a> </div> </div> </div> </div> </div> </form> </div> </div> </div> </div> <div id="printableArea2"> <div class="row mt-1"> <div class="col"> <input type="hidden" value="<?php echo e(__('Monthly Cashflow') . ' ' . 'Report of' . ' ' . $filter['startDateRange'] . ' to ' . $filter['endDateRange']); ?>" id="filename"> <div class="card p-4 mb-4"> <h7 class="report-text gray-text mb-0"><?php echo e(__('Report')); ?> :</h7> <h6 class="report-text mb-0"><?php echo e(__('Monthly Cashflow')); ?></h6> </div> </div> <div class="col"> <div class="card p-4 mb-4"> <h7 class="report-text gray-text mb-0"><?php echo e(__('Duration')); ?> :</h7> <h6 class="report-text mb-0"> <?php echo e($filter['startDateRange'] . ' to ' . $filter['endDateRange']); ?></h6> </div> </div> </div> <div class="row"> <div class="col-12"> <div class="card"> <div class="card-body table-border-style"> <div class="row"> <div class="col-sm-12"> <h5 class="pb-3"><?php echo e(__('Income')); ?></h5> <div class="table-responsive mt-3 mb-3"> <table class="table"> <thead> <tr> <th width="20%"><?php echo e(__('Category')); ?></th> <?php $__currentLoopData = $monthList; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $month): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <th><?php echo e($month); ?></th> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> </thead> <tbody> <tr> <td width="20%" class="text-dark"> <?php echo e(__('Total Income (Invoice)')); ?></td> <?php $__currentLoopData = $chartIncomeArr; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $i => $income): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <td><?php echo e(currency_format_with_sym($income)); ?></td> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> </tbody> </table> </div> <div class="col-sm-12"> <h5><?php echo e(__('Expense')); ?></h5> <div class="table-responsive mt-4"> <table class="table mb-0"> <thead> <tr> <th width="20%"><?php echo e(__('Category')); ?></th> <?php $__currentLoopData = $monthList; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $month): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <th><?php echo e($month); ?></th> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> </tr> </thead> <tbody> <tr> <td width="20%" class="text-dark"> <?php echo e(__('Total Expenses (Bill)')); ?></td> <?php $__currentLoopData = $chartExpenseArr; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $i => $expense): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <td><?php echo e(currency_format_with_sym($expense)); ?></td> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> </tr> </tbody> </table> </div> </div> <div class="col-sm-12"> <div class="table-responsive mt-4"> <table class="table mb-0"> <thead> <tr> <th colspan="13" class="font-bold"> <span><?php echo e(__('Net Profit = Total Income - Total Expense')); ?></span> </th> </tr> </thead> <tbody> <tr> <td width="20%" class="text-dark"> <?php echo e(__('Net Profit')); ?></td> <?php $__currentLoopData = $netProfitArray; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $i => $profit): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <td><?php echo e(currency_format_with_sym($profit)); ?></td> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> </tr> </tbody> </table> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> <div class="quarterly_cashflow"> </div> </div> <!-- [ sample-page ] end --> <!-- [ Main Content ] end --> </div> <?php $__env->stopSection(); ?> <?php $__env->startPush('css'); ?> <link rel="stylesheet" href="<?php echo e(asset('packages/workdo/Taskly/src/Resources/assets/css/datatables.min.css')); ?>"> <link rel="stylesheet" href="<?php echo e(asset('packages/workdo/Taskly/src/Resources/assets/css/custom.css')); ?>"> <style type="text/css"> .apexcharts-menu-icon { display: none; } table.dataTable.no-footer { border-bottom: none !important; } .table_border { border: none !important } </style> <?php $__env->stopPush(); ?> <?php $__env->startPush('scripts'); ?> <script type="text/javascript" src="<?php echo e(asset('js/html2pdf.bundle.min.js')); ?>"></script> <script src="<?php echo e(asset('packages/workdo/Taskly/src/Resources/assets/js/jquery.dataTables.min.js')); ?>"></script> <script src="<?php echo e(asset('packages/workdo/Taskly/src/Resources/assets/js/apexcharts.min.js')); ?>"></script> <script> (function() { var options = { series: [<?php echo json_encode($mile_percentage); ?>], chart: { height: 475, type: 'radialBar', offsetY: -20, sparkline: { enabled: true } }, plotOptions: { radialBar: { startAngle: -90, endAngle: 90, track: { background: "#e7e7e7", strokeWidth: '97%', margin: 5, // margin is in pixels }, dataLabels: { name: { show: true }, value: { offsetY: -50, fontSize: '20px' } } } }, grid: { padding: { top: -10 } }, colors: ["#51459d"], labels: ['Progress'], }; var chart = new ApexCharts(document.querySelector("#milestone-chart"), options); chart.render(); })(); var arrProcessPer_status_task = <?php echo json_encode($arrProcessPer_status_task); ?>; if (arrProcessPer_status_task.length > 0) { var options = { series: <?php echo json_encode($arrProcessPer_status_task); ?>, chart: { width: 380, type: 'pie', }, colors: <?php echo json_encode($chartData['color']); ?>, labels: <?php echo json_encode($arrProcess_Label_status_tasks); ?>, responsive: [{ breakpoint: 480, options: { chart: { width: 100 }, legend: { position: 'bottom' } } }] }; var chart = new ApexCharts(document.querySelector("#chart"), options); chart.render(); } var options = { series: [{ data: <?php echo json_encode($arrProcessPer_priority); ?> }], chart: { height: 250, type: 'bar', }, colors: ['#6fd943', '#ff3a6e', '#3ec9d6'], plotOptions: { bar: { columnWidth: '50%', distributed: true, } }, dataLabels: { enabled: false }, legend: { show: true }, xaxis: { categories: <?php echo json_encode($arrProcess_Label_priority); ?>, labels: { style: { colors: <?php echo json_encode($chartData['color']); ?>, } } } }; var chart = new ApexCharts(document.querySelector("#chart_priority"), options); chart.render(); ///=====================Hour Chart =============================================================/// var options = { series: [{ data: [<?php echo json_encode($esti_logged_hour_chart); ?>, <?php echo json_encode($logged_hour_chart); ?>], }], chart: { height: 210, type: 'bar', }, colors: ['#963aff', '#ffa21d'], plotOptions: { bar: { horizontal: true, columnWidth: '30%', distributed: true, } }, dataLabels: { enabled: false }, legend: { show: true }, xaxis: { categories: ["Estimated Hours", "Logged Hours "], } }; var chart = new ApexCharts(document.querySelector("#chart-hours"), options); chart.render(); </script> <script> var filename = $('#chart-hours').val(); function saveAsPDFOverview() { var element = document.getElementById('printableArea'); var opt = { margin: 0.3, image: { type: 'jpeg', quality: 1 }, html2canvas: { scale: 4, dpi: 72, letterRendering: true }, jsPDF: { unit: 'in', format: 'A2' } }; html2pdf().set(opt).from(element).save(); } $(document).on('click', '.quarterly', function(event) { event.preventDefault(); $.ajax({ url: '<?php echo e(route('projectreport.quarterly.cashflow', $project->id)); ?>', type: 'POST', success: function(data) { $('.monthly_cashflow').hide(); $('.quarterly_cashflow').html(data.html); }, error: function(data) { toastrs('Info', data.error, 'info') } }) }); </script> <script> var filename = $('#filename').val(); function saveAsPDF() { var element = document.getElementById('printableArea2'); var opt = { margin: 0.3, filename: filename, image: { type: 'jpeg', quality: 1 }, html2canvas: { scale: 4, dpi: 72, letterRendering: true }, jsPDF: { unit: 'in', format: 'A2' } }; html2pdf().set(opt).from(element).save(); } </script> <?php $__env->stopPush(); ?> <?php echo $__env->make('layouts.main', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH /home/id/erp.dev-unit.com/packages/workdo/Taskly/src/Providers/../Resources/views/project_report/show.blade.php ENDPATH**/ ?>