示例#1
0
<?php

snippet('layouts/manage/header');
?>

<?php 
snippet('page-header', ['heading' => $pageTitle]);
?>

<?php 
if (site()->user() && site()->user()->hasRole('admin', 'manager')) {
    ?>
    <p>
        <a href="<?php 
    echo Crazy\Controllers\Manager::url();
    ?>
" class="btn btn-primary">
            Visit the Manager's Dashboard
            <i class="fa fa-chevron-circle-right"></i>
        </a>
    </p>
<?php 
}
?>

<?php 
snippet('layouts/manage/footer');
示例#2
0
">
                <i class="fa fa-calendar-o"></i>
                Events
            </a>
        </li>
        <li class="<?php 
e($request->path()->last() == 'orders', 'active');
?>
">
            <a href="<?php 
echo Crazy\Controllers\Manager::url($studio, '', 'orders');
?>
">
                <i class="fa fa-list"></i>
                Orders
            </a>
        </li>
        <li class="<?php 
e($request->path()->last() == 'coupons', 'active');
?>
">
            <a href="<?php 
echo Crazy\Controllers\Manager::url($studio, '', 'coupons');
?>
">
                <i class="fa fa-shield"></i>
                Coupons
            </a>
        </li>
    </ul>
</div>
示例#3
0
<?php

foreach (Crazy\Controllers\Manager::getUserStudios() as $studio) {
    ?>
    <a href="<?php 
    echo Crazy\Controllers\Manager::url($studio);
    ?>
" class="list-group-item">
        <div class="media">
            <div class="media-left">
                <div class="icon-md">
                    <i class="fa fa-building"></i>
                </div>
            </div>
            <div class="media-body">
                <strong class="media-title"><?php 
    echo $studio->title()->html();
    ?>
</strong>
                <br>
                <?php 
    echo $studio->address()->html();
    ?>
            </div>
        </div>
    </a>
<?php 
}
示例#4
0
<a href="<?php 
echo Crazy\Controllers\Manager::url($studio, $event);
?>
" class="list-group-item">
    <div class="media">
        <div class="media-left">
            <?php 
echo thumb($event->featuredImage(), ['width' => 30, 'height' => 30, 'crop' => true]);
?>
        </div>
        <div class="media-body">
            <strong class="media-title"><?php 
echo $event->title()->html();
?>
</strong>
            <br>
            <?php 
echo $event->shortDateTime();
?>
        </div>
    </div>
</a>
示例#5
0
        ?>
                    </td>
                    <td>
                        <strong>
                            <?php 
        $guestsCount = $order->event()->guestsCount();
        ?>
                            <?php 
        echo $guestsCount;
        ?>
                            <?php 
        echo r($guestsCount == 1, 'guest', 'guests');
        ?>
                            <small>
                                <a href="<?php 
        echo Crazy\Controllers\Manager::url($order->studio(), $order->event());
        ?>
">
                                    check in
                                </a>
                            </small>
                        </strong>
                        <div>
                            <?php 
        foreach ($order->guests()->toStructure() as $guest) {
            ?>
                                <div class="<?php 
            echo r($guest->checkedIn()->bool(), 'text-success', 'text-warning');
            ?>
">
                                    <?php