HEX
Server: Apache
System: Linux p3plzcpnl506847.prod.phx3.secureserver.net 4.18.0-553.54.1.lve.el8.x86_64 #1 SMP Wed Jun 4 13:01:13 UTC 2025 x86_64
User: slfopp7cb1df (5698090)
PHP: 8.1.34
Disabled: NONE
Upload Files
File: /home/slfopp7cb1df/www/pm/app/Views/projects/tasks/task_timesheet.php
<?php foreach ($task_timesheet as $timesheet) { ?>
    <div class="d-flex mt15 mb15">
        <div class="flex-shrink-0">
            <span class="avatar avatar-xs">
                <img src="<?php echo get_avatar($timesheet->logged_by_avatar); ?>" alt="..." />
            </span>
        </div>
        <div class="w-100 ps-2">
            <div class="float-start">
                <div><?php echo format_to_date($timesheet->start_time); ?></div>
                <?php if (!$timesheet->hours) { ?>
                    <small><?php echo format_to_time($timesheet->start_time) . " to " . format_to_time($timesheet->end_time); ?></small>
                <?php } ?>
            </div>
            <div class="float-end">
                <strong><?php echo convert_seconds_to_time_format($timesheet->hours ? (round(($timesheet->hours * 60), 0) * 60) : abs(strtotime($timesheet->end_time) - strtotime($timesheet->start_time))) ?></strong>
            </div>
        </div>
    </div>
<?php } ?>