示例#1
0
        ?>
                            <tr>
                                <td><?php 
        echo htmlentities($order->user_name);
        ?>
</td>
                                <td><?php 
        echo htmlentities($order->user_phone);
        ?>
</td>
                                <td><?php 
        echo htmlentities($order->user_comment);
        ?>
</td>
                                <td><?php 
        echo \App\Components\FunctionLibrary::getDate($order->date, true);
        ?>
</td>
                                <td><?php 
        echo \App\Components\FunctionLibrary::getStatus($order->status);
        ?>
</td>
                                <td><a href="/admin/order/view/<?php 
        echo (int) $order->id;
        ?>
"><i class="fa fa-eye"></i></a></td>
                                <td><a href="/admin/order/edit/<?php 
        echo (int) $order->id;
        ?>
"><i class="fa fa-edit"></i></a></td>
                                <td>
示例#2
0
                        <h4 class="app-block app-grey-color">Пока записей нет!</h4>
                        <?php 
} else {
    ?>
                        <div class="row">
                            <div class="col-sm-12 app-box">
                            <?php 
    foreach ($blogs as $blog) {
        ?>
                            <div>
                                <h3 class="app-grey-color"><?php 
        echo htmlentities($blog->title);
        ?>
</h3>
                                <p class="app-grey-color"><i class="fa fa-calendar"></i> <?php 
        echo htmlentities(FL::getDate($blog->dt));
        ?>
</p>
                                <br>
                                <div class="row">
                                    <div class="col-lg-4 col-md-5 col-sm-6">
                                        <img src="/template<?php 
        echo htmlentities($blog->image);
        ?>
" class="img-responsive">
                                        <br>
                                    </div>
                                    <div class="col-ld-8 col-md-7 col-sm-6 app-blog-description-box app-grey-color">
                                        <?php 
        echo htmlentities($blog->description);
        ?>
示例#3
0
                </div>
            </div>
            <div class="col-sm-9 padding-right">
                <div class="features_items"><!--features_items-->
                    <h2 class="title text-center">Блог</h2>
                    <div class="app-block">
                        <?php 
if (!empty($blog)) {
    ?>
                            <h3 class="app-title-example app-grey-color"><?php 
    echo htmlentities($blog->title);
    ?>
</h3>
                            <br>
                            <p class="app-soft-grey-color"><i class="fa fa-calendar"></i> <?php 
    echo FL::getDate($blog->dt);
    ?>
</p>
                            <br>
                            <div><img src="/template<?php 
    echo htmlentities($blog->image);
    ?>
"</div>
                            <br>
                            <br>
                            <div><?php 
    echo htmlentities($blog->content);
    ?>
</div>
                        <?php 
}