<?php $__env->startSection('content'); ?>
    <div class="report-mileages">
        <div class="header">
            <h3>Mileage Log - Year Ended 5 April <?php echo floatval($data->tax_year->start_year) + 1; ?></h3>

            <div class="row">
                <div class="col-xs-6">
                    <table class="table">
                        <tr>
                            <th class="col-md-8">Total miles logged</th>
                            <td class="col-md-4 pull-right"><?php echo Helper::formatAmount($data->total_mileage); ?></td>
                        </tr>
                        <tr>
                            <th>Calculated amount</th>
                            <td class="pull-right"><?php echo Helper::formatAmount(-$data->total_amount); ?></td>
                        </tr>
                    </table>
                </div>
            </div>
        </div>

        <table class="table">
            <thead class="text-center">
            <tr class="text-center">
                <th>Date</th>
                <th>Miles Claimed</th>
                <th>Amount</th>
                <th>Purpose/Description</th>
                <th>Vehicle type</th>
            </tr>
            </thead>
            <tbody>
            <?php foreach($data->mileages as $mileage): ?>
                <tr>
                    <td><?php echo \Helpers\Helper::formatDate($mileage->date); ?></td>
                    <td class="text-right"><?php echo \Helpers\Helper::formatNumber($mileage->mileage); ?></td>
                    <td class="text-right"><?php echo \Helpers\Helper::formatAmount(-$mileage->claim_allowance); ?></td>
                    <td><?php echo $mileage->description; ?></td>
                    <td><?php echo $mileage->vehicle ? $mileage->vehicle->description : ''; ?></td>
                </tr>
            <?php endforeach; ?>
            </tbody>
            <tfoot>
            <tr>
                <th class="no-wrap">Total</th>
                <th class="text-right"><?php echo $data->total_mileage; ?></th>
                <th class="text-right"><?php echo \Helpers\Helper::formatAmount(-$data->total_amount); ?></th>
                <th colspan="2"></th>
            </tr>
            </tfoot>
        </table>
    </div>
<?php $__env->stopSection(); ?>


<?php echo $__env->make('layouts.report', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>