madbob/GASdottoNG

View on GitHub
code/resources/views/commons/orderslist.blade.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

$params = [
    'identifier' => 'booking-list',
    'items' => $orders,
    'url' => 'bookings',
    'header_function' => 'printableUserHeader',
];

if (isset($no_legend) == false) {
    $params['legend'] = (object)[
        'class' => App\Aggregate::class
    ];
}

?>

@include('commons.loadablelist', $params)