<!DOCTYPE html>
<html lang="en">
    <head>
        <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
        <meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
        <meta http-equiv="X-UA-Compatible" content="ie=edge">
        <link rel="stylesheet" href="<?php echo e(asset('vendor/bootstrap/dist/css/bootstrap.min.css')); ?>">
        <style type="text/css">
            @import  url("https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700,800");
            @import  url("https://fonts.googleapis.com/css?family=Open+Sans:400,600,700");
            @import  url("https://fonts.googleapis.com/css?family=Montserrat:400,500,600,700");
            @import  url("https://fonts.googleapis.com/css?family=Roboto:400,500,700");
            @import  url("https://fonts.googleapis.com/css?family=Nunito:400,600,700");
        </style>
    </head>
    <body>
        <?php
            $ticket_date_crt = date("d-M-Y", strtotime($ticket_date));
        ?>
        <span style="text-align: center;"><u><b>FACILITY REPORT FOR FOR THE DATE <?php echo e($ticket_date_crt); ?></b></u><br></span>
        <table  width="100%" style="font-size:90%;" class="table">
            <thead class="thead-info">
                <tr>
                    <th>Sl No</th>
                    <th>Date</th>
                    <th>Organisation Name</th>
                    <th>Facility Name</th>
                    <th># of Tickets</th>
                    <th>Ticket Serial #</th>
                    <th># of Adults</th>
                    <th># of Children</th>
                    <th>Amount</th>
                </tr>
            </thead>
            <tbody>
                <?php
                    $n = 0;
                ?>
                <?php if(isset($ticket_array[$ticket_date]['nooftickets'])): ?>
                    <?php
                        $n++;
                    ?>
                    <tr>
                        <td><?php echo e($n); ?></td>
                        <td><?php echo e(date("d-M-Y", strtotime($ticket_date))); ?></td>
                        <td><?php echo e($ticket_array[$ticket_date]['organisation_name']); ?></td>
                        <td><?php echo e($ticket_array[$ticket_date]['facility_name']); ?></td>
                        <td><?php echo e($ticket_array[$ticket_date]['nooftickets']); ?></td>
                        <td><?php echo e($ticket_array[$ticket_date]['ticketnumber']); ?></td>
                        <td style="text-align: center;"><?php echo e($ticket_array[$ticket_date]['noofadults']); ?></td>
                        <td style="text-align: center;"><?php echo e($ticket_array[$ticket_date]['noofchildren']); ?></td>
                        <td style="text-align: center;"><?php echo e($ticket_array[$ticket_date]['totalamount']); ?></td>
                    </tr>
                <?php endif; ?>
            </tbody>
        </table>
    </body>
</html><?php /**PATH /var/www/html/ksstmprod/resources/views/Reports/download_facility_report_pdf.blade.php ENDPATH**/ ?>